16 lines
376 B
YAML
16 lines
376 B
YAML
services:
|
|
nginx-proxy-auth:
|
|
image: nginx
|
|
container_name: nginx-proxy-auth
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./src/default.conf:/etc/nginx/conf.d/default.conf
|
|
filebrowser:
|
|
volumes:
|
|
- '../frontend:/home/frontend'
|
|
- "./src/config.yaml:/home/filebrowser/config.yaml"
|
|
build:
|
|
context: ../
|
|
dockerfile: ./_docker/Dockerfile
|