Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/iamapen/docker-php74-centos8

Dockerfile php-7.4 + Apache-2.4 + CentOS-8
https://github.com/iamapen/docker-php74-centos8

centos8 dockerfile php74

Last synced: about 1 month ago
JSON representation

Dockerfile php-7.4 + Apache-2.4 + CentOS-8

Awesome Lists containing this project

README

        

php73-centos8
====

php-7.4(mod_php) + Apache-2.4(prefork) + CentOS-8

定番のミニマム構成のためのイメージ

### docker-compose で起動する例
```bash
cd docker
docker-compose up -d

docker-compose ps
```

### 単体実行の例
```bash
docker run -it --name php74-centos8-build \
-p 80:80 -p 443:443 \
-v "C:\projects\docker_build\docker-php74-centos8\src/:/var/www/html" \
iamapen/php74-centos8
```