diff --git a/fluidd/README.md b/fluidd/README.md new file mode 100644 index 0000000..4f72ce9 --- /dev/null +++ b/fluidd/README.md @@ -0,0 +1 @@ +docker stack deploy -c fluidd.yml fluidd diff --git a/fluidd/fluidd.yml b/fluidd/fluidd.yml new file mode 100644 index 0000000..e71a3fa --- /dev/null +++ b/fluidd/fluidd.yml @@ -0,0 +1,15 @@ +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