Created
April 15, 2019 07:47
-
-
Save raphink/9046f7c15da3d1bfd8c4123b5603dcd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
version: '3' | |
services: | |
mongo: | |
image: mongo | |
environment: | |
MONGODB_USER: 'terradb' | |
MONGODB_PASSWORD: 'terradb' | |
MONGODB_DATABASE: 'terradb' | |
MONGODB_ADMIN_PASSWORD: 'terradb' | |
terradb: | |
image: terradb | |
build: . | |
environment: | |
MONGODB_URL: 'mongodb://mongo/terradb' | |
MONGODB_USERNAME: 'terradb' | |
MONGODB_PASSWORD: 'terradb' | |
API_ADDRESS: '0.0.0.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment