https://github.com/jackkweyunga/codeboost-ci-demo
codeboost ci demo
https://github.com/jackkweyunga/codeboost-ci-demo
Last synced: about 1 year ago
JSON representation
codeboost ci demo
- Host: GitHub
- URL: https://github.com/jackkweyunga/codeboost-ci-demo
- Owner: jackkweyunga
- Created: 2025-01-25T07:03:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-25T08:25:45.000Z (over 1 year ago)
- Last Synced: 2025-03-08T00:28:23.746Z (over 1 year ago)
- Language: Dockerfile
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# codeboost-ci-demo
codeboost ci demo
# Topics
- Docker
- Automation
- Deployment
# References
- Docker Setup tool - https://github.com/jackkweyunga/docker-setup
- My Articles - https://jackkweyunga.hashnode.dev/
# File structure
```shell
├── requirements.txt
├── Dockerfile
├── README.md
├── .dockerignore
├── .gitignore
├── .github
│ └── workflows
│ └── container.yml
└── main.py
```
# Running
1. Build docker image
```shell
# Use sudo if on linux / If not using rootless docker
docker build -t my-app .
```
2. Run a docker container
```shell
docker run -p 5000:5000 my-app
```
3. Visit http://localhost:5000