https://github.com/abra19/docker_test
https://github.com/abra19/docker_test
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/abra19/docker_test
- Owner: Abra19
- Created: 2023-12-09T00:08:40.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-12T16:09:10.000Z (about 2 years ago)
- Last Synced: 2025-02-21T23:47:58.390Z (10 months ago)
- Language: JavaScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Create app structure
docker run -it -w /out -v `pwd`:/out node npm init fastify
### Install dependencies
docker run -it -w /out -v `pwd`:/out node npm install
### Build Image from Dockerfile
docker build -t abra19/devops-example-app .
### Docker run
docker run -d -p 3000:3000 abra19/devops-example-app