-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(beware for wsl: microsoft/WSL#1854 and docker/for-win#371 (comment))
- Loading branch information
Const
committed
Aug 12, 2017
1 parent
e9b87c9
commit 3058cbd
Showing
4 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
MONGODB_APPLICATION_DATABASE=app_db_name |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
version: "3" | ||
services: | ||
web: | ||
build: . | ||
# deploy: | ||
# replicas: 5 | ||
# resources: | ||
# limits: | ||
# cpus: "0.1" | ||
# memory: 50M | ||
# restart_policy: | ||
# condition: on-failure | ||
volumes: | ||
- .:/usr/app | ||
command: npm start | ||
ports: | ||
- "80:8080" | ||
networks: | ||
- webnet | ||
# depends_on: | ||
# - mongodb | ||
env_file: .env | ||
|
||
# mongodb: | ||
# image: mvertes/alpine-mongo | ||
# ports: | ||
# - "27017:27017" | ||
|
||
networks: | ||
webnet: |
This file contains 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