Compare commits
No commits in common. "58a2c915ec2bef81f84ef8d64e52cf296e977958" and "171acb1c83f80d7d580af262ca11a6046c86cb6a" have entirely different histories.
58a2c915ec
...
171acb1c83
|
|
@ -1,78 +0,0 @@
|
||||||
# TODO
|
|
||||||
services:
|
|
||||||
tubearchivist:
|
|
||||||
image: bbilly1/tubearchivist:v0.5.9
|
|
||||||
container_name: tubearchivist
|
|
||||||
volumes:
|
|
||||||
# Config
|
|
||||||
- $APPDATA/tubearchivist:/cache
|
|
||||||
# Media
|
|
||||||
- $MEDIADIR/youtube:/youtube
|
|
||||||
environment:
|
|
||||||
HOST_UID: $PUID
|
|
||||||
HOST_GID: $PGID
|
|
||||||
TZ: $TZ
|
|
||||||
ES_URL: http://archivist-es:9200
|
|
||||||
REDIS_CON: redis://archivist-redis:6379
|
|
||||||
TA_HOST: http://${DOCKER_IP}:8200
|
|
||||||
TA_USERNAME: $TA_USER
|
|
||||||
TA_PASSWORD: $TA_PASS
|
|
||||||
ELASTIC_PASSWORD: $TA_ES_PASS
|
|
||||||
ports:
|
|
||||||
- 8200:8000
|
|
||||||
# labels:
|
|
||||||
# - "traefik.enable=true"
|
|
||||||
# - "traefik.http.routers.tubearchivist.rule=Host(`tubearchivist.${LOCAL_DOMAIN}`)"
|
|
||||||
# - "traefik.http.routers.tubearchivist.entrypoints=https"
|
|
||||||
# - "traefik.http.routers.tubearchivist.tls=true"
|
|
||||||
# - "traefik.http.services.tubearchivist.loadbalancer.server.port=8000"
|
|
||||||
# networks:
|
|
||||||
# - proxy
|
|
||||||
healthcheck:
|
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
||||||
interval: 2m
|
|
||||||
timeout: 10s
|
|
||||||
retries: 3
|
|
||||||
start_period: 30s
|
|
||||||
depends_on:
|
|
||||||
- archivist-es
|
|
||||||
- archivist-redis
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
archivist-redis:
|
|
||||||
image: redis
|
|
||||||
container_name: archivist-redis
|
|
||||||
volumes:
|
|
||||||
- redis:/data
|
|
||||||
expose:
|
|
||||||
- "6379"
|
|
||||||
depends_on:
|
|
||||||
- archivist-es
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
archivist-es:
|
|
||||||
image: bbilly1/tubearchivist-es:8.19.0
|
|
||||||
container_name: archivist-es
|
|
||||||
volumes:
|
|
||||||
- es:/usr/share/elasticsearch/data
|
|
||||||
environment:
|
|
||||||
ELASTIC_PASSWORD: $TA_ES_PASS
|
|
||||||
ES_JAVA_OPTS: -Xms1g -Xmx1g
|
|
||||||
xpack.security.enabled: true
|
|
||||||
discovery.type: single-node
|
|
||||||
path.repo: /usr/share/elasticsearch/data/snapshot
|
|
||||||
ulimits:
|
|
||||||
memlock:
|
|
||||||
soft: -1
|
|
||||||
hard: -1
|
|
||||||
expose:
|
|
||||||
- "9200"
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
redis:
|
|
||||||
es:
|
|
||||||
|
|
||||||
# networks:
|
|
||||||
# proxy:
|
|
||||||
# external: true
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
services:
|
|
||||||
tunarr:
|
|
||||||
image: ghcr.io/chrisbenincasa/tunarr:1.1.11
|
|
||||||
container_name: tunarr
|
|
||||||
volumes:
|
|
||||||
# Config
|
|
||||||
- $APPDATA/tunarr:/config/tunarr
|
|
||||||
# Media
|
|
||||||
- $MEDIADIR/tv:/tv:ro
|
|
||||||
- $MEDIADIR/movies:/movies:ro
|
|
||||||
environment:
|
|
||||||
LOG_LEVEL: ${TUNARR_LOG_LEVEL:-INFO}
|
|
||||||
TZ: $TZ
|
|
||||||
ports:
|
|
||||||
- 8088:8000
|
|
||||||
devices:
|
|
||||||
- /dev/dri:/dev/dri
|
|
||||||
# labels:
|
|
||||||
# - "traefik.enable=true"
|
|
||||||
# - "traefik.http.routers.tunarr.rule=Host(`tunarr.${LOCAL_DOMAIN}`)"
|
|
||||||
# - "traefik.http.routers.tunarr.entrypoints=https"
|
|
||||||
# - "traefik.http.routers.tunarr.tls=true"
|
|
||||||
# - "traefik.http.services.tunarr.loadbalancer.server.port=8000"
|
|
||||||
# networks:
|
|
||||||
# - proxy
|
|
||||||
restart: unless-stopped
|
|
||||||
|
|
||||||
# networks:
|
|
||||||
# proxy:
|
|
||||||
# external: true
|
|
||||||
Loading…
Reference in a new issue