Created
April 22, 2019 12:14
-
-
Save filips123/05232a1b824b108c2f07bf523384e37e to your computer and use it in GitHub Desktop.
OS.js in Play with Docker
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
version: '3' | |
services: | |
osjs: | |
image: osjs/osjs:v3 | |
environment: | |
- NODE_ENV=development | |
command: nodemon --watch package-lock.json --watch src/server --watch src/packages src/server/index.js | |
volumes: | |
- ./src:/usr/src/osjs/src | |
- ./vfs:/usr/src/osjs/vfs | |
ports: | |
- 8000:8000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment