changed default network

This commit is contained in:
Raphael Martin 2023-11-26 12:15:34 +01:00
parent 14f62013d1
commit 1692ea17ac

View File

@ -2,14 +2,14 @@ version: '1'
networks: networks:
default: default:
name: "${TRAEFIK_NETWORK}"
external: true
db:
name: "${PROJECT_NAME}_wordpress_db_net" name: "${PROJECT_NAME}_wordpress_db_net"
external: false external: false
be: be:
name: "${PROJECT_NAME}_wordpress_net" name: "${PROJECT_NAME}_wordpress_net"
external: false external: false
traefik:
name: "${TRAEFIK_NETWORK}"
external: true
services: services:
webserver: webserver:
@ -27,6 +27,7 @@ services:
- "./nginx-conf:/etc/nginx/conf.d" - "./nginx-conf:/etc/nginx/conf.d"
- "./php-conf:/usr/local/etc/php" - "./php-conf:/usr/local/etc/php"
networks: networks:
- "traefik"
- "be" - "be"
labels: labels:
# Watchtower add to auto update # Watchtower add to auto update
@ -58,7 +59,7 @@ services:
- "WORDPRESS_DB_PASSWORD=${MYSQL_PASSWORD}" - "WORDPRESS_DB_PASSWORD=${MYSQL_PASSWORD}"
- "WORDPRESS_DB_NAME=${MYSQL_DATABASE}" - "WORDPRESS_DB_NAME=${MYSQL_DATABASE}"
networks: networks:
- "db" - "default"
- "be" - "be"
labels: labels:
# Watchtower add to auto update # Watchtower add to auto update
@ -73,9 +74,7 @@ services:
command: '--default-authentication-plugin=mysql_native_password' command: '--default-authentication-plugin=mysql_native_password'
env_file: ".env" env_file: ".env"
volumes: volumes:
- "${PROJECT_DATA}/${PROJECT_NAME}-wordpress/db:/var/lib/mysql" - "${PROJECT_DATA}/${PROJECT_NAME}-wordpress/db:/var/lib/mysql"
networks:
- "db"
labels: labels:
# Watchtower add to auto update # Watchtower add to auto update
- "com.centurylinklabs.watchtower.enable=true" - "com.centurylinklabs.watchtower.enable=true"