https://github.com/drklrd/dockercompose-test
Testing docker compose setup
https://github.com/drklrd/dockercompose-test
Last synced: over 1 year ago
JSON representation
Testing docker compose setup
- Host: GitHub
- URL: https://github.com/drklrd/dockercompose-test
- Owner: drklrd
- Created: 2017-10-23T16:09:20.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-10-23T16:09:39.000Z (almost 9 years ago)
- Last Synced: 2025-02-16T01:31:42.019Z (over 1 year ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker test app
## From the dockerfile
Build the image as
```
docker build -t drklrd/node-web-app .
```
Then run a container (for development) from the image as :
```
docker run -p 8888:8080 -v /home/drklrd/Desktop/stuffs/docker-test:/usr/src/app -w "/usr/src/app" drklrd/node-web-app
```
## From the dockercompose
Using the docker compose ;
```
docker compose up
```