forked from axiom-data-science/rsync-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinotify-rsyncd-stack.yaml
60 lines (57 loc) · 1.26 KB
/
inotify-rsyncd-stack.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: "3.2"
services:
rsyncd:
# You can also use tag dev
image: zctmdc/inotify-rsync-server:latest
environment:
- USERNAME=zctmdc
- PASSWORD=mysecret
volumes:
- nginx-conf-d:/data/nginx-conf-d/
- sites-enabled:/data/sites-enabled/
- acme-sh:/data/acme-sh/
networks:
- balanced
# - nginx
deploy:
mode: global
placement:
constraints:
- node.labels.es != true
inotify-rsyncd:
# extends:
# service: rsyncd
# will -> docker compose -f .\rsyncd-stack.yaml config
# - node.labels.es != true
# - node.labels.es == true
image: zctmdc/inotify-rsync-server:dev
environment:
- USERNAME=zctmdc
- PASSWORD=mysecret
- SERVICE_NAMES=rsyncd,syncd.example.com,127.0.0.1
volumes:
- nginx-conf-d:/data/nginx-conf-d/
- sites-enabled:/data/sites-enabled/
- acme-sh:/data/acme-sh/
ports:
- "873:873"
networks:
- balanced
# - nginx
deploy:
mode: replicated
replicas: 1
placement:
constraints:
- node.labels.es == true
volumes:
sites-enabled:
nginx-conf-d:
acme-sh:
networks:
balanced:
driver: overlay
attachable: true
# nginx:
# external: true
# name: nginx_balanced