https://github.com/tcarters/apache2_indocker
In this small project, I build a Docker image containing Apache2 server on top of ubuntu lunar OS.
https://github.com/tcarters/apache2_indocker
apache2 lunar ubuntu
Last synced: 3 months ago
JSON representation
In this small project, I build a Docker image containing Apache2 server on top of ubuntu lunar OS.
- Host: GitHub
- URL: https://github.com/tcarters/apache2_indocker
- Owner: Tcarters
- License: other
- Created: 2023-01-30T23:00:27.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-01T21:41:48.000Z (over 3 years ago)
- Last Synced: 2025-01-23T02:44:57.926Z (over 1 year ago)
- Topics: apache2, lunar, ubuntu
- Language: HTML
- Homepage:
- Size: 24.9 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Apache2 running in Docker
A sample web server running in a Docker
- To build The image locally
```Build The image
docker build -t "name-new-image:tag" .
```
- Run a container from this image
```Running
docker container run -dit --name container1 -p 8000:80 tcdocker2021:apache2_lunar:v1
```