Created
April 8, 2021 13:48
-
-
Save kohlerdominik/c21095befd034336d2b8d9e617dc11a5 to your computer and use it in GitHub Desktop.
Docker Compose for node workspace
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
# docker-compose run workspace | |
services: | |
workspace: | |
image: node:slim | |
user: "node" | |
volumes: | |
- ${PWD}:/home/node/app:delegated | |
working_dir: /home/node/app | |
command: bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment