Last active
September 4, 2020 10:58
-
-
Save r3cha/467353146544bb8f285235a1775e973f to your computer and use it in GitHub Desktop.
Fastest way to up you frontend service
This file contains 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
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