php:7.4.20-cli-alpine3.13

This commit is contained in:
Tinywan 2021-06-26 14:39:46 +08:00
parent 928ca71a0f
commit 0457ea1438
2 changed files with 16 additions and 1 deletions

View File

@ -1,4 +1,4 @@
FROM php:7.4.14-cli-alpine3.13
FROM php:7.4.20-cli-alpine3.13
LABEL Maintainer="ShaoBo Wan (Tinywan) <756684177@qq.com>" \
Description="Webman Lightweight container with PHP 7.4 based on Alpine Linux."

View File

@ -11,3 +11,18 @@ Start the Docker container:
docker run -p 8088:8080 -name dnmp-webman -v d:/dnmp/www/webman.tinywan.com:/app tinywan/docker-php-cli:latest
```
## Docker
delete all container
```
docker rm `docker ps -a -q`
```
delete all images
```
docker rmi -f $(docker images -qa)
```