Created
September 6, 2021 22:25
-
-
Save Link2k5/3f0a8911068df50ec36fc9d2b6a5d02e to your computer and use it in GitHub Desktop.
Simple docker-compose for node
This file contains hidden or 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.9" | |
services: | |
node: | |
image: node | |
working_dir: /home/node/app | |
container_name: node | |
tty: true | |
user: node | |
volumes: | |
- ./:/home/node/app | |
ports: | |
- 3000:3000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment