Skip to content

Instantly share code, notes, and snippets.

@lucianobragaweb
Last active February 19, 2022 14:17
Show Gist options
  • Save lucianobragaweb/3131dfdc8c4f3b786dce8e947d0423e6 to your computer and use it in GitHub Desktop.
Save lucianobragaweb/3131dfdc8c4f3b786dce8e947d0423e6 to your computer and use it in GitHub Desktop.
Docker file for Vue.js
version: "2"
services:
node:
image: "node:8"
working_dir: /app
volumes:
- ./:/app
expose:
- "8080"
ports:
- "8080:8080"
command: "npm start"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment