This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
├── Africa | |
│ ├── Abidjan | |
│ ├── Accra | |
│ ├── Addis_Ababa | |
│ ├── Algiers | |
│ ├── Asmara | |
│ ├── Asmera | |
│ ├── Bamako | |
│ ├── Bangui | |
│ ├── Banjul |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Container console commands (Windows: PowerShell) | |
# docker build --no-cache -t php:7.1 | |
# docker run --name test-php -v "${PWD}:/var/www:rw" -p "9001:9000" -d php:7.1 | |
# docker exec -ti php:7.1 /bin/sh | |
# docker rm test-php --force | |
# docker rmi php:7.1 | |
FROM alpine | |
RUN \ | |
addgroup -g 82 -S www-data && adduser -u 82 -D -S -G www-data www-data && \ |