Skip to content

Instantly share code, notes, and snippets.

@Luziberto
Forked from lucianobragaweb/.dockerignore
Created May 2, 2020 13:15
Show Gist options
  • Save Luziberto/8230b1314ac39efd3e87c7a192592ec7 to your computer and use it in GitHub Desktop.
Save Luziberto/8230b1314ac39efd3e87c7a192592ec7 to your computer and use it in GitHub Desktop.
Docker 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