16 lines
410 B
YAML
16 lines
410 B
YAML
version: '3.8'
|
||
|
||
services:
|
||
fluidd:
|
||
image: ghcr.io/fluidd-core/fluidd:latest
|
||
ports:
|
||
- target: 80 # Container içindeki port
|
||
published: 8086 # Host makinede açılacak port
|
||
protocol: tcp
|
||
mode: host # Ingress yerine doğrudan node'a bind eder
|
||
deploy:
|
||
replicas: 1
|
||
placement:
|
||
constraints:
|
||
- node.labels.platform == prod
|