11 lines
216 B
YAML
11 lines
216 B
YAML
|
services:
|
||
|
file-explorer:
|
||
|
build: .
|
||
|
container_name: file-explorer
|
||
|
ports:
|
||
|
- "8080:80"
|
||
|
volumes:
|
||
|
- ./hosts:/etc/apache2/sites-enabled
|
||
|
- ../:/var/www/project
|
||
|
restart: unless-stopped
|