remove depends in docker-compose

This commit is contained in:
Bora M. Alper 2020-02-21 13:20:07 +00:00
parent 04818c5bea
commit 3a99ce5e02
No known key found for this signature in database
GPG Key ID: 8F1A9504E1BD114D

View File

@ -2,7 +2,7 @@ version: "2"
services:
magneticod:
image: boramalper/magneticod
image: boramalper/magneticod:latest
volumes:
- ${MAGNETICOD_DATA}:/root/.local/share/magneticod
- ${MAGNETICOD_CONFIG}:/root/.config/magneticod
@ -11,12 +11,9 @@ services:
- "--indexer-addr=0.0.0.0:1212"
magneticow:
image: boramalper/magneticow
image: boramalper/magneticow:latest
volumes:
- ${MAGNETICOD_DATA}:/root/.local/share/magneticod
- ${MAGNETICOW_CONFIG}:/root/.config/magneticow
depends_on:
# It doesn't necessarily "depend" on magneticod, but you would probably like to start them at the same time.
- magneticod
ports:
- "8080:8080"