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: swarm_dashboard, tags: swarm_dashboard}
|
||||
- {role: shephard, tags: shephard}
|
||||
- {role: nextcloud, tags: nextcloud}
|
||||
# - {role: nextcloud, tags: nextcloud}
|
||||
|
|
|
@ -6,6 +6,21 @@ networks:
|
|||
nextcloud:
|
||||
|
||||
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:
|
||||
image: mariadb:10.6
|
||||
networks:
|
||||
|
@ -41,6 +56,8 @@ services:
|
|||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_HOST=db
|
||||
- REDIS_HOST=redis
|
||||
- REDIS_HOST_PASSWORD=
|
||||
deploy:
|
||||
placement:
|
||||
constraints:
|
||||
|
|
|
@ -73,3 +73,5 @@ services:
|
|||
- --certificatesresolvers.letsencrypt.acme.email=pim@kunis.nl
|
||||
- --certificatesresolvers.letsencrypt.acme.httpchallenge=true
|
||||
- --certificatesresolvers.letsencrypt.acme.httpchallenge.entrypoint=web
|
||||
|
||||
- --serversTransport.insecureSkipVerify=true
|
||||
|
|
Reference in a new issue