Skip to content

Commit 5132f1c

Browse files
committed
Update
Update README and docker-compose
1 parent dd8799f commit 5132f1c

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

README.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
- [`8.X-fpm-nginx-alpine` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/alpine.fpm_nginx.Dockerfile)
99
- [`8.X-fpm-nginx-alpine-wsc` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/alpine.fpm_nginx.wsc.Dockerfile)
1010
- [`8.X-fpm-nginx-alpine-extended` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/alpine.fpm_nginx.extended.Dockerfile)
11-
- [`8.X-apache-slim` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.apache.slim.Dockerfile)
12-
- [`8.X-apache` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.apache.Dockerfile)
13-
- [`8.X-apache-wsc` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.apache.wsc.Dockerfile)
14-
- [`8.X-fpm-slim` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.fpm.slim.Dockerfile)
15-
- [`8.X-fpm` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.fpm.Dockerfile)
16-
- [`8.X-fpm-wsc` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.fpm.wsc.Dockerfile)
11+
- [`8.X-apache-debian-slim` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.apache.slim.Dockerfile)
12+
- [`8.X-apache-debian` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.apache.Dockerfile)
13+
- [`8.X-apache-debian-wsc` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.apache.wsc.Dockerfile)
14+
- [`8.X-fpm-debian-slim` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.fpm.slim.Dockerfile)
15+
- [`8.X-fpm-debian` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.fpm.Dockerfile)
16+
- [`8.X-fpm-debian-wsc` (*Dockerfile*)](https://github.com/Tob1as/docker-php/blob/master/debian.fpm.wsc.Dockerfile)
1717

1818
**All container images are available in versions `8.3`, `8.4` and `8.5`.** ;-)
1919

@@ -34,7 +34,7 @@ PHP is a server-side scripting language designed for web development, but which
3434
* These images extend the basic images with additional PHP extensions, for example: SQL-Databases, gd, imagick, ldap and more. For details see in dockerfiles.
3535
* *Images with `-slim` suffix have only the PHP extensions like offical base image, but with entrypoint script for some settings and other adjustments. This is the base image for all others.*
3636
* *Images without `-slim` or other suffix have a mix of additional extensions, which should maybe sufficient for most PHP web applications.*
37-
* *Images with `-wsc` suffix only contain PHP extensions for [WSC](https://www.woltlab.com).
37+
* *Images with `-wsc` suffix only contain PHP extensions for [WSC (WoltLab Suite Core)](https://www.woltlab.com) [[Software Download](https://www.woltlab.com/en/woltlab-suite-download/)].
3838
(Alternatively, you can use [wsc-dockerized](https://github.com/SoftCreatRMedia/wsc-dockerized) setup.)*
3939
* *Images with `-extended` suffix at present only for php images with nginx. (Prometheus Exporter and other)*
4040
* For easy install the extensions and get a smaller images it use [php-extension-installer](https://github.com/mlocati/docker-php-extension-installer).
@@ -78,15 +78,16 @@ PHP is a server-side scripting language designed for web development, but which
7878
* php with fpm: `9000`
7979

8080
* An own Dockerfile?, then here an example with copy additional own entrypoint-file(s) in apache image:
81-
``` $ echo -e "FROM tobi312/php:8.4-apache\nCOPY *.sh /entrypoint.d/" > Dockerfile```
81+
``` $ echo -e "FROM tobi312/php:8.4-apache-debian\nCOPY *.sh /entrypoint.d/" > Dockerfile```
8282

8383
#### Docker-Compose
8484

8585
```yaml
8686
version: "2.4"
8787
services:
8888
php:
89-
image: tobi312/php:8.4-apache
89+
image: tobi312/php:8.4-apache-debian
90+
#image: tobi312/php:8.4-fpm-nginx-alpine
9091
container_name: phpcontainer
9192
restart: unless-stopped
9293
## ports ONLY with apache/nginx:

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
#build:
77
# context: ./
88
# dockerfile: debian.apache.Dockerfile
9-
image: tobi312/php:8.4-apache
9+
image: tobi312/php:8.4-apache-debian
1010
#image: tobi312/php:8.4-fpm-nginx-alpine
1111
container_name: phpcontainer # or: website
1212
#restart: unless-stopped

0 commit comments

Comments
 (0)