Skip to content
This repository has been archived by the owner on Aug 16, 2022. It is now read-only.

Commit

Permalink
chore: update docker-compose config
Browse files Browse the repository at this point in the history
  • Loading branch information
rot1024 committed Apr 6, 2022
1 parent 6480734 commit 83f9b13
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,21 @@ services:
reearth-backend:
build:
context: .
args:
TAG: debug
image: reearth/reearth-backend:nightly
environment:
REEARTH_DB: mongodb://reearth-mongo
ports:
- '8080:8080'
env_file:
- ./.env
environment:
REEARTH_ENV: docker
REEARTH_DB_URL: mongodb://reearth-mongo
# env_file:
# - ./.env
links:
- reearth-mongo
depends_on:
- reearth-mongo
volumes:
- ./data:/reearth/data
reearth-mongo:
image: mongo:4.4.6-bionic
image: mongo:4.4-focal
ports:
- 27017:27017
volumes:
Expand Down

0 comments on commit 83f9b13

Please sign in to comment.