Skip to content

Instantly share code, notes, and snippets.

@dmitrymomot
Created March 6, 2018 00:58
Show Gist options
  • Save dmitrymomot/54e39c91307559333b13a0908fcb3622 to your computer and use it in GitHub Desktop.
Save dmitrymomot/54e39c91307559333b13a0908fcb3622 to your computer and use it in GitHub Desktop.
docker-compose file for nuxtjs application
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