https://github.com/rootdavinalfa/devops-sharing-knowledge
https://github.com/rootdavinalfa/devops-sharing-knowledge
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rootdavinalfa/devops-sharing-knowledge
- Owner: rootdavinalfa
- Created: 2025-08-01T04:29:24.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2025-08-01T07:15:34.000Z (11 months ago)
- Last Synced: 2025-08-01T09:45:39.159Z (11 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Example Project to utilize Docker and Docker Compose
This is a simple application using Express
## How to run
1. Make sure you have Docker and Docker Compose installed on your machine.
2. Run the following command in the terminal to build the Docker image:
```bash
docker build -t docker-example-kit:latest .
```
3. After build run the following command to start the application:
```bash
docker run -p 3000:3000 -e HOST=0.0.0.0 docker-example-kit:latest
```
4. Open your web browser and navigate to `http://localhost:3000` to see the application running.