forked from ethibox/awesome-stacks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpydio.yml
46 lines (42 loc) · 1.22 KB
/
pydio.yml
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
# DOMAIN=example.com docker stack deploy -c pydio.yml pydio
services:
pydio:
image: pydio/cells:${VERSION:-2.2.9}
volumes:
- ${VOLUME_PATH}data:/var/cells:cached
environment:
- CELLS_BIND=0.0.0.0:8080
- CELLS_EXTERNAL=${SCHEME:-https}://${DOMAIN:-pydio.localhost}
- CELLS_NO_TLS=1
deploy:
labels:
- traefik.enable=true
- traefik.http.routers.pydio-${NUMBER:-1}.rule=Host(`${DOMAIN:-pydio.localhost}`)
- traefik.http.routers.pydio-${NUMBER:-1}.entrypoints=${SCHEME:-https}
- traefik.http.routers.pydio-${NUMBER:-1}.service=pydio-${NUMBER:-1}
- traefik.http.routers.pydio-${NUMBER:-1}.tls.certresolver=letsencrypt
- traefik.http.services.pydio-${NUMBER:-1}.loadbalancer.server.port=8080
networks:
- internal
- traefik
mariadb:
image: mariadb:10.5.9
volumes:
- ${VOLUME_PATH}mariadb:/var/lib/mysql:cached
environment:
- MYSQL_ROOT_PASSWORD=myp@ssw0rd
- MYSQL_DATABASE=pydio
- MYSQL_USER=pydio
- MYSQL_PASSWORD=myp@ssw0rd
networks:
- internal
volumes:
data:
mariadb:
networks:
internal:
driver: overlay
attachable: true
traefik:
external: true
name: traefik-net