Login for certain variables to be updated with your slot's information
Wiki > Upbrr
1. Create Directories
mkdir -p ~/upbrr/config
cd ~/upbrr
2. Create .yml
services:
upbrr:
image: ghcr.io/autobrr/upbrr:0.1.2
container_name: upbrr
restart: unless-stopped
# Maps your host UID -> uid 1000 inside the container, which is what the
# image runs as. Requires Podman 4.3+.
userns_mode: "keep-id:uid=1000,gid=1000"
environment:
- TZ=America/New_York
# Loopback only during setup. See "Exposing the web UI" below.
ports:
- "127.0.0.1:20078:7480"
volumes:
- /home/user/upbrr/config:/config
# Identical path inside and out, so torrent-client save paths line up.
- /home/user/files:/home/user/files
# Read-only mount of an existing Upload Assistant install, for config import.
- /home/user/Upload-Assistant:/home/user/Upload-Assistant:ro
3. Start it
cd ~/upbrr
podman-compose up -d
podman logs -f upbrr