-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added docker-compose.yml for quick one-command spinup - added docker-compose.dev.yml to override /habitrpg mount - modified Dockerfile to accept /habitrpg mount
- Loading branch information
Matt Harrington
committed
Jan 11, 2016
1 parent
85c532f
commit 67f184c
Showing
3 changed files
with
18 additions
and
0 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
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,3 @@ | ||
web: | ||
volumes: | ||
- '.:/habitrpg' |
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,13 @@ | ||
web: | ||
build: . | ||
ports: | ||
- "3000:3000" | ||
links: | ||
- mongo | ||
environment: | ||
- NODE_DB_URI=mongodb://mongo/habitrpg | ||
|
||
mongo: | ||
image: mongo | ||
ports: | ||
- "27017:27017" |