Skip to content

Commit

Permalink
Configurable Image Tags
Browse files Browse the repository at this point in the history
  • Loading branch information
darshkpatel committed Apr 27, 2020
1 parent 1b54be1 commit 09db87c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:
- mongodb

env_file:
- .env.public
- .env

links:
- "redis:redis_cache"
Expand All @@ -66,7 +66,7 @@ services:
- "redis:redis_cache"
- "db:postgres"
env_file:
- .env.public
- .env

volumes:
- ./esim-cloud-backend:/code
Expand All @@ -79,7 +79,7 @@ services:
- mongodb

mongodb:
image: mongo:latest
image: "mongo:${TAG_MONGO}"
container_name: "mongodb"
environment:
- MONGO_DATA_DIR=/usr/data/db/
Expand All @@ -91,18 +91,18 @@ services:
command: mongod

redis:
image: "redis:alpine"
image: "redis:${TAG_REDIS}"
environment:
- ALLOW_EMPTY_PASSWORD=yes
- REDIS_DISABLE_COMMANDS=FLUSHDB,FLUSHALL
volumes:
- ./redis_data:/data

db:
image: mysql:8.0
image: "mysql:${TAG_MYSQL}"
command: --default-authentication-plugin=mysql_native_password
env_file:
- .env.public
- .env
volumes:
- ./mysql_data:/var/lib/mysql

Expand Down

0 comments on commit 09db87c

Please sign in to comment.