feat: adding docker compose

This commit is contained in:
sanjay 2025-05-09 00:43:21 +05:30
parent 76f6a2da6b
commit 20aa6c8ec5

14
docker-compose.yml Normal file
View file

@ -0,0 +1,14 @@
version: '3.8'
services:
tautulli:
build:
context: .
dockerfile: Dockerfile
container_name: tautulli
ports:
- "8181:8181" # Map the Tautulli web interface to localhost:8181
volumes:
- ./config:/config # Persistent configuration storage
- ./logs:/logs # Persistent log storage
restart: unless-stopped