diff options
-rwxr-xr-x | docker-compose.yml | 6 | ||||
-rwxr-xr-x | onceaday/Dockerfile | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/docker-compose.yml b/docker-compose.yml index 1d68251..e9cdf67 100755 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: build: context: . dockerfile: Dockerfile - image: r.vm.gl/smallytchannelbot + image: smallytchannelbot networks: - db-network external_links: @@ -16,11 +16,13 @@ services: build: context: . dockerfile: ./onceaday/Dockerfile - image: r.vm.gl/smallytchannelbotoad + image: smallytchannelbot_oad networks: - db-network external_links: - mariadb:mysql + depends_on: + - sytc volumes: - ./config.json:/app/config.json diff --git a/onceaday/Dockerfile b/onceaday/Dockerfile index b6b9d91..626fe53 100755 --- a/onceaday/Dockerfile +++ b/onceaday/Dockerfile @@ -1,4 +1,4 @@ -FROM r.vm.gl/smallytchannelbot +FROM smallytchannelbot MAINTAINER Eden Attenborough "eddie.atten.ea29@gmail.com" ARG DEBIAN_FRONTEND=noninteractive RUN apt-get install -y tzdata cron |