https://github.com/giabar/gb-httpd-centos
Apache Web Server Docker image - https://hub.docker.com/r/giabar/gb-httpd-centos/
https://github.com/giabar/gb-httpd-centos
apache apache-httpd docker docker-compose docker-image dockerfile
Last synced: 3 months ago
JSON representation
Apache Web Server Docker image - https://hub.docker.com/r/giabar/gb-httpd-centos/
- Host: GitHub
- URL: https://github.com/giabar/gb-httpd-centos
- Owner: giabar
- License: apache-2.0
- Created: 2017-11-27T20:39:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-02T00:05:42.000Z (over 6 years ago)
- Last Synced: 2025-01-20T12:32:49.332Z (5 months ago)
- Topics: apache, apache-httpd, docker, docker-compose, docker-image, dockerfile
- Language: Dockerfile
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Apache Web Server Docker image
> Docker image based on CentOS 7.5
## Try online
You can try that online! Click the below button:
[](https://labs.play-with-docker.com/?stack=https://raw.githubusercontent.com/giabar/gb-httpd-centos/master/docker-compose.yml)
## Quick start:
```
docker run \
-d \
-p 8080:80 \
giabar/gb-httpd-centos
```## Save data in a volume:
```
docker run \
-d \
-p 8080:80 \
-v httpd:/var/www/html \
giabar/gb-httpd-centos
```