An open API service indexing awesome lists of open source software.

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.

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
```