dockerize project

This commit is contained in:
2024-12-04 14:40:34 +01:00
parent eb67e4a5eb
commit 1ab60b99f4
3 changed files with 46 additions and 0 deletions

10
.docker/compose.yaml Normal file
View File

@ -0,0 +1,10 @@
services:
www:
build: .
container_name: file-explorer
ports:
- "8741:80"
volumes:
- ./hosts:/etc/apache2/sites-enabled
- ../:/var/www/project
restart: always