2023-04-03 20:17:57 +00:00
|
|
|
version: '3'
|
2023-03-14 22:26:47 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
autobrr:
|
|
|
|
container_name: autobrr
|
2023-05-03 02:20:59 +00:00
|
|
|
image: ghcr.io/autobrr/autobrr:v1.25.0
|
2023-03-14 22:26:47 +00:00
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
- ${APP_PORT}:7474
|
|
|
|
volumes:
|
|
|
|
- ${APP_DATA_DIR}/data/autobrr:/config
|
2023-04-03 20:17:57 +00:00
|
|
|
user: '1000:1000'
|
2023-03-14 22:26:47 +00:00
|
|
|
environment:
|
|
|
|
- TZ=${TZ}
|
|
|
|
networks:
|
|
|
|
- tipi_main_network
|
|
|
|
labels:
|
|
|
|
traefik.enable: ${APP_EXPOSED}
|
|
|
|
traefik.http.routers.autobrr.rule: Host(`${APP_DOMAIN}`)
|
|
|
|
traefik.http.routers.autobrr.entrypoints: websecure
|
|
|
|
traefik.http.routers.autobrr.service: autobrr
|
|
|
|
traefik.http.routers.autobrr.tls.certresolver: myresolver
|
|
|
|
traefik.http.services.autobrr.loadbalancer.server.port: 7474
|