Browse Source

Use links instead of depends_on in Docker compose files (#97)

pull/139/head
Marc Sluiter 8 years ago
committed by Guillaume Vincent
parent
commit
00984005bb
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      docker-compose.prod.yml
  2. +1
    -1
      docker-compose.yml

+ 1
- 1
docker-compose.prod.yml View File

@@ -16,7 +16,7 @@ services:
- '8000'
volumes:
- www:/backend/www
depends_on:
links:
- db
env_file:
- .env


+ 1
- 1
docker-compose.yml View File

@@ -8,7 +8,7 @@ services:
build: ./backend
expose:
- '8000'
depends_on:
links:
- db
volumes:
- ./backend:/backend


Loading…
Cancel
Save