mirror of
https://github.com/Viren070/docker-compose-template.git
synced 2025-12-01 23:17:00 +01:00
20 lines
551 B
YAML
20 lines
551 B
YAML
services:
|
|
tweakio:
|
|
image: varthe/tweakio:latest
|
|
container_name: tweakio
|
|
restart: unless-stopped
|
|
# Run this container in the same network as warp, so it can access Torrentio
|
|
# If not blocked by Torrentio, you can remove this line.
|
|
# Will need to be accesssed at http://warp:3185 if using warp.
|
|
network_mode: service:warp
|
|
user: $PUID:$PGID
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml
|
|
profiles:
|
|
- all
|
|
- tweakio
|
|
depends_on:
|
|
warp:
|
|
condition: service_healthy
|
|
restart: true
|