Files
tvapp2/docker-compose.yml
Aetherinox 6228c9ec08 feat: add bindable working dir /usr/bin/app
working directory can now be bound to user host machine
2025-02-23 06:03:13 -07:00

19 lines
473 B
YAML
Executable File

services:
tvapp2:
container_name: tvapp2
image: tvapp2:latest
hostname: tvapp2
environment:
TZ: "Etc/UTC"
volumes:
- /etc/timezone:/etc/timezone:ro
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
- ./config:/config
- ./data:/usr/bin/app
ulimits:
memlock:
soft: -1
hard: -1