Skip to content

Commit

Permalink
Update docker compose example - still more we could add
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbenincasa committed May 28, 2024
1 parent 6e0a023 commit 590de16
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 5 deletions.
20 changes: 20 additions & 0 deletions docker/example.compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: '3.8'
services:
tunarr:
# image: chrisbenincasa/tunarr:edge
# Uncomment along with runtime below to enable HW accel
image: chrisbenincasa/tunarr:edge-nvidia
container_name: tunarr
ports:
- 8088:8000
# Uncomment if using the Nvidia container
runtime: nvidia
environment:
- LOG_LEVEL=${TUNARR_LOG_LEVEL:-INFO}
# volumes:
# The host path is relative to the location of the compose file
# This can also use an absolute path.
#
# Uncomment if migrating from dizquetv. Chnage the host path
# to the location of your dizquetv "database"
# - ./.dizquetv:/.dizquetv
17 changes: 12 additions & 5 deletions docs/getting-started/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,22 @@ version: '3.8'
services:
tunarr:
image: chrisbenincasa/tunarr:edge
# Uncomment along with runtime below to enable HW accel
# image: chrisbenincasa/tunarr:edge-nvidia
container_name: tunarr
ports:
- '8000:8000'
- ${TUNARR_SERVER_PORT:-8000}:8000
# Uncomment if using the Nvidia container
# runtime: nvidia
volumes:
# The host path is relative to the location of the compose file
# This can also use an absolute path.
- ./.dizquetv:/.dizquetv
environment:
- LOG_LEVEL=${TUNARR_LOG_LEVEL:-INFO}
# volumes:
# The host path is relative to the location of the compose file
# This can also use an absolute path.
#
# Uncomment if migrating from dizquetv. Chnage the host path
# to the location of your dizquetv "database"
# - ./.dizquetv:/.dizquetv
```

!!! note
Expand Down

0 comments on commit 590de16

Please sign in to comment.