restore files
All checks were successful
Deploy App / deploy (push) Successful in 1m55s

This commit is contained in:
valere
2025-08-29 02:27:38 +02:00
commit a234d41752
7 changed files with 93 additions and 0 deletions

23
docker-compose.yml Executable file
View File

@@ -0,0 +1,23 @@
services:
files:
image: local/files
build:
context: .
dockerfile: Dockerfile
container_name: files
restart: unless-stopped
working_dir: /app
ports:
- "${PORT}:${PORT_EXPOSED}"
volumes:
- "${MEDIA_DIR}:/mnt/media"
environment:
VIRTUAL_HOST: "${DOMAIN}"
LETSENCRYPT_HOST: "${DOMAIN}"
PUID: "${PUID}"
PGID: "${PGID}"
networks:
default:
name: dockerweb
external: true