Skip to content

Instantly share code, notes, and snippets.

@r3cha
Last active September 4, 2020 10:58
Show Gist options
  • Save r3cha/467353146544bb8f285235a1775e973f to your computer and use it in GitHub Desktop.
Save r3cha/467353146544bb8f285235a1775e973f to your computer and use it in GitHub Desktop.
Fastest way to up you frontend service
version: "3.8"
volumes:
node_modules:
services:
ui:
image: node:14.8.0-alpine3.12
ports:
- 3000:8080
working_dir: /app
volumes:
- ./ui:/app
- node_modules:/app/node_modules
command: yarn serve
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment