Set MySQL user password
This commit is contained in:
parent
2ecaf2347c
commit
fc3bbbbd93
47
compose.yml
47
compose.yml
@ -4,51 +4,66 @@ services:
|
||||
nextcloud:
|
||||
image: nextcloud:latest
|
||||
depends_on:
|
||||
- maindb
|
||||
- mariadb
|
||||
secrets:
|
||||
- db_root_password
|
||||
- db_password
|
||||
environment:
|
||||
- MYSQL_HOST=maindb:3306
|
||||
- MYSQL_HOST=mariadb
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=root
|
||||
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db_root_password
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db_password
|
||||
- DOMAIN=${DOMAIN}
|
||||
volumes:
|
||||
- /mnt/nextcloud:/var/www/html:cached
|
||||
- /mnt/nextapps:/var/www/html/custom_apps:cached
|
||||
- /mnt/nextdata:/var/www/html/data:cached
|
||||
- /mnt/nextconfig:/var/www/html/config:cached
|
||||
- nextcloud:/var/www/html
|
||||
- nextapps:/var/www/html/custom_apps:cached
|
||||
- nextdata:/var/www/html/data:cached
|
||||
- nextconfig:/var/www/html/config:cached
|
||||
networks:
|
||||
- proxy
|
||||
- internal
|
||||
deploy:
|
||||
placement:
|
||||
constraints: [node.role == worker]
|
||||
update_config:
|
||||
parallelism: 2
|
||||
delay: 10s
|
||||
restart_policy:
|
||||
condition: on-failure
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.docker.network=proxy"
|
||||
- "traefik.http.routers.nextcloud.tls=true"
|
||||
- "traefik.http.routers.nextcloud.entrypoints=websecure"
|
||||
- "traefik.http.services.nextcloud.loadbalancer.server.port=80"
|
||||
- "traefik.http.routers.nextcloud.rule=Host(`${DOMAIN}`)"
|
||||
- "traefik.http.routers.nextcloud.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "traefik.http.routers.myroutename.tls.certresolver=staging"
|
||||
#- "traefik.http.routers.nextcloud.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
||||
- "traefik.http.routers.nextcloud.entrypoints=web-secure"
|
||||
- "traefik.http.routers.nextcloud.tls.certresolver=staging"
|
||||
|
||||
mariadb:
|
||||
image: "mariadb:10.5"
|
||||
environment:
|
||||
- MYSQL_DATABASE=nextcloud
|
||||
- MYSQL_USER=nextcloud
|
||||
- MYSQL_PASSWORD_FILE=/run/secrets/db_passwd
|
||||
- MYSQL_ROOT_PASSWORD_FILE=/run/secrets/db_root_password
|
||||
secrets:
|
||||
- db_root_password
|
||||
- db_password
|
||||
volumes:
|
||||
- "mariadb:/var/lib/mariadb"
|
||||
networks:
|
||||
- internal
|
||||
|
||||
secrets:
|
||||
db_root_password:
|
||||
external: true
|
||||
name: ${STACK_NAME}_db_root_passwd_${DB_ROOT_PASSWD_VERSION}
|
||||
db_password:
|
||||
external: true
|
||||
name: ${STACK_NAME}_db_passwd_${DB_ROOT_PASSWD_VERSION}
|
||||
|
||||
volumes:
|
||||
nextcloud:
|
||||
nextapps:
|
||||
nextdata:
|
||||
nextconfig:
|
||||
mariadb:
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
|
@ -2,4 +2,5 @@
|
||||
|
||||
create-secrets () {
|
||||
pwgen -n 32 1 | docker secret create "${STACK_NAME}_db_root_passwd_${DB_ROOT_PASSWD_VERSION}" -
|
||||
pwgen -n 32 1 | docker secret create "${STACK_NAME}_db_passwd_${DB_ROOT_PASSWD_VERSION}" -
|
||||
}
|
||||
|
Reference in New Issue
Block a user