first commit

This commit is contained in:
valere
2025-09-11 17:37:03 +02:00
commit 8213752385
53 changed files with 11946 additions and 0 deletions

23
docker-compose.yml Executable file
View File

@@ -0,0 +1,23 @@
services:
valeredev:
image: local/valeredev
build:
context: .
dockerfile: Dockerfile
container_name: valeredev
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