Skip to content

Commit

Permalink
mend
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDivine committed Oct 26, 2024
1 parent dfc8e4d commit 0f5e928
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
restart: unless-stopped
environment:
- MYSQL_ROOT_HOST=%
- MYSQL_ROOT_PASSWORD=$MW_DB_INSTALLDB_PASS
- MYSQL_ROOT_PASSWORD=/run/secrets/db_root_password
- MYSQL_DATABASE=$MW_DB_NAME
volumes:
- ./__initdb:/docker-entrypoint-initdb.d
Expand Down Expand Up @@ -37,7 +37,7 @@ services:
- MW_DB_INSTALLDB_USER=root
- MW_DB_INSTALLDB_PASS
- MW_DB_USER=root
- MW_DB_PASS=$MW_DB_INSTALLDB_PASS
- MW_DB_PASS=/run/secrets/db_root_password
- MW_SECRET_KEY
# - XDEBUG_CONFIG=remote_host=0.0.0.0 remote_enable=1 remote_autostart=Off remote_connect_back=On
- MW_SITE_SERVER=${MW_SITE_SERVER:-https://bugsigdb.org}
Expand Down Expand Up @@ -118,7 +118,9 @@ services:
- MATOMO_DATABASE_HOST=db
- MATOMO_DATABASE_DBNAME=matomo
- MATOMO_DATABASE_USERNAME=root
- MATOMO_DATABASE_PASSWORD=$MW_DB_INSTALLDB_PASS
- MATOMO_DATABASE_PASSWORD=/run/secrets/db_root_password
secrets:
- db_root_password
volumes:
- ./_data/matomo:/var/www/html
- ./_resources/matomo-bootstrap.php:/var/www/html/bootstrap.php
Expand All @@ -141,7 +143,6 @@ services:
- traefik.http.middlewares.${COMPOSE_PROJECT_NAME}-matomo-headers.headers.customrequestheaders.X-Forwarded-Uri=/${MATOMO_FOLDER:-matomo}
- traefik.http.routers.${COMPOSE_PROJECT_NAME}-matomo.middlewares=${COMPOSE_PROJECT_NAME}-matomo-stripprefix,${COMPOSE_PROJECT_NAME}-matomo-headers


varnish:
image: pastakhov/varnish:7.0
restart: unless-stopped
Expand Down Expand Up @@ -244,7 +245,7 @@ services:
- MW_DB_USER=root
- MW_DB_PASS=/run/secrets/db_root_password
- MW_DB_NAME=$MW_DB_NAME
- RESTIC_REPOSITORY_FILE=/run/secrets/restic_s3_repository
- RESTIC_REPOSITORY_FILE=/run/secrets/restic_gc_repository
- RESTIC_PASSWORD_FILE=/run/secrets/restic_password
- RESTIC_TAG=backup_full
- GOOGLE_APPLICATION_CREDENTIALS=/run/secrets/gcloud_credentials
Expand Down Expand Up @@ -304,7 +305,7 @@ secrets:
file: ./secrets/restic_gc_repository
gcloud_credentials:
file: ./secrets/gcloud_credentials

networks:
traefik-public:
external: true

0 comments on commit 0f5e928

Please sign in to comment.