Skip to content
Snippets Groups Projects
Verified Commit 18f21845 authored by David Gunnarsson's avatar David Gunnarsson
Browse files

Explicitly specify networks in docker compose

needed so that the services use the defined network and so that the db can be accessed from beta.facem.at, which also is in the same network
parent e4058953
No related branches found
No related tags found
Loading
......@@ -14,6 +14,8 @@ services:
tty: true
depends_on:
- db
networks:
- facem-backoffice-network
db:
image: mariadb:10.4
ports:
......@@ -22,6 +24,8 @@ services:
- mariadb_data:/var/lib/mysql
env_file:
- .env.production
networks:
- facem-backoffice-network
volumes:
mariadb_data:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment