Files
umbrel-apps/cpn-lancache/docker-compose.yml
2025-11-28 23:12:25 +01:00

38 lines
914 B
YAML

version: "3.7"
services:
cpn-lancache_app_proxy_1:
environment:
APP_HOST: cpn-lancache_app_1
APP_PORT: "8080"
cpn-lancache_app_1:
image: lancachenet/monolithic:latest
network_mode: host
environment:
- USE_GENERIC_CACHE=true
- LANCACHE_IP=192.168.178.70
- UPSTREAM_DNS=8.8.8.8
- CACHE_ROOT=/data/cache
- CACHE_DISK_SIZE=2000g
- CACHE_INDEX_SIZE=500m
- CACHE_MAX_AGE=3650d
- TZ=Europe/Berlin
restart: unless-stopped
volumes:
- ${APP_DATA_DIR}/cache:/data/cache
- ${APP_DATA_DIR}/logs:/data/logs
ulimits:
nofile:
soft: 65536
hard: 65536
dns:
image: lancachenet/lancache-dns:latest
network_mode: host
environment:
- USE_GENERIC_CACHE=true
- LANCACHE_IP=192.168.178.70
- UPSTREAM_DNS=8.8.8.8
- TZ=Europe/Berlin
restart: unless-stopped