Created
March 6, 2018 00:58
-
-
Save dmitrymomot/54e39c91307559333b13a0908fcb3622 to your computer and use it in GitHub Desktop.
docker-compose file for nuxtjs application
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
app: | |
image: node:latest | |
command: "npm run dev" | |
environment: | |
HOST: 0.0.0.0 | |
PORT: 3000 | |
volumes: | |
- .:/app | |
- ./_logs/:/root/.npm/_logs/ | |
working_dir: /app | |
ports: | |
- "3000:3000" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment