disable nextcloud for now
This commit is contained in:
parent
8611f928ad
commit
3e7b1d8116
3 changed files with 20 additions and 1 deletions
|
@ -16,4 +16,4 @@
|
||||||
- {role: kms, tags: kms}
|
- {role: kms, tags: kms}
|
||||||
- {role: swarm_dashboard, tags: swarm_dashboard}
|
- {role: swarm_dashboard, tags: swarm_dashboard}
|
||||||
- {role: shephard, tags: shephard}
|
- {role: shephard, tags: shephard}
|
||||||
- {role: nextcloud, tags: nextcloud}
|
# - {role: nextcloud, tags: nextcloud}
|
||||||
|
|
|
@ -6,6 +6,21 @@ networks:
|
||||||
nextcloud:
|
nextcloud:
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis:5
|
||||||
|
networks:
|
||||||
|
- nextcloud
|
||||||
|
expose:
|
||||||
|
- 6379
|
||||||
|
volumes:
|
||||||
|
- type: bind
|
||||||
|
source: /mnt/data/nextcloud/redis
|
||||||
|
target: /data
|
||||||
|
deploy:
|
||||||
|
placement:
|
||||||
|
constraints:
|
||||||
|
- "node.labels.nextcloud == true"
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: mariadb:10.6
|
image: mariadb:10.6
|
||||||
networks:
|
networks:
|
||||||
|
@ -41,6 +56,8 @@ services:
|
||||||
- MYSQL_DATABASE=nextcloud
|
- MYSQL_DATABASE=nextcloud
|
||||||
- MYSQL_USER=nextcloud
|
- MYSQL_USER=nextcloud
|
||||||
- MYSQL_HOST=db
|
- MYSQL_HOST=db
|
||||||
|
- REDIS_HOST=redis
|
||||||
|
- REDIS_HOST_PASSWORD=
|
||||||
deploy:
|
deploy:
|
||||||
placement:
|
placement:
|
||||||
constraints:
|
constraints:
|
||||||
|
|
|
@ -73,3 +73,5 @@ services:
|
||||||
- --certificatesresolvers.letsencrypt.acme.email=pim@kunis.nl
|
- --certificatesresolvers.letsencrypt.acme.email=pim@kunis.nl
|
||||||
- --certificatesresolvers.letsencrypt.acme.httpchallenge=true
|
- --certificatesresolvers.letsencrypt.acme.httpchallenge=true
|
||||||
- --certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=web
|
- --certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=web
|
||||||
|
|
||||||
|
- --serversTransport.insecureSkipVerify=true
|
||||||
|
|
Reference in a new issue