mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-08 06:00:51 -07:00
feat: adding docker compose
This commit is contained in:
parent
76f6a2da6b
commit
20aa6c8ec5
1 changed files with 14 additions and 0 deletions
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue