From 3a99ce5e02a7a924c1534c294d7d370ffd722844 Mon Sep 17 00:00:00 2001 From: "Bora M. Alper" Date: Fri, 21 Feb 2020 13:20:07 +0000 Subject: [PATCH] remove depends in docker-compose --- docker-compose.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6c213f5..aaf4ea5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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"