https://github.com/haohanyang/node-docker-example
Sample node.js application and docker images build
https://github.com/haohanyang/node-docker-example
circleci devops docker github-actions node nodejs
Last synced: about 1 year ago
JSON representation
Sample node.js application and docker images build
- Host: GitHub
- URL: https://github.com/haohanyang/node-docker-example
- Owner: haohanyang
- License: bsd-3-clause
- Created: 2024-12-16T19:48:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-16T19:52:58.000Z (over 1 year ago)
- Last Synced: 2025-02-09T20:29:26.030Z (about 1 year ago)
- Topics: circleci, devops, docker, github-actions, node, nodejs
- Language: Dockerfile
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Example node.js Docker app
An example about how to build and publish mult-arch images of a node.js app.
* Pull the image
```bash
docker pull haohanyang/node-docker-example
```
* Start the container
```bash
docker run -it --rm -p 3000:3000 haohanyang/node-docker-example
```