Created
March 21, 2020 13:29
-
-
Save TAK-EMI/8448ab33f053e838b7cd3bc1d2c1cca2 to your computer and use it in GitHub Desktop.
Node.js Docker Compose
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" | |
services: | |
node: | |
image: node:lts-alpine | |
container_name: node | |
tty: true | |
volumes: | |
- .:/node | |
working_dir: /node | |
ports: | |
- 3000:3000 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment