1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-05 17:09:34 +00:00
single_php_filehost/Makefile
2021-12-13 15:54:58 +05:00

8 lines
160 B
Makefile

build:
docker build -t lightphp .
run:
mkdir -p files
docker run --rm -p 80:80 -v ${PWD}/files:/var/www/files lightphp
rm:
docker rmi lightphp
rm -rf files