2021-09-05 17:10:14 +00:00
|
|
|
version: '3.3'
|
|
|
|
|
|
|
|
services:
|
|
|
|
tubearchivist:
|
|
|
|
container_name: tubearchivist
|
|
|
|
restart: always
|
|
|
|
image: bbilly1/tubearchivist:latest
|
|
|
|
ports:
|
|
|
|
- 8000:8000
|
|
|
|
volumes:
|
2022-01-10 00:54:23 +00:00
|
|
|
- media:/youtube
|
|
|
|
- cache:/cache
|
2021-09-05 17:10:14 +00:00
|
|
|
environment:
|
2022-04-15 10:56:17 +00:00
|
|
|
- ES_URL=http://archivist-es:9200 # needs protocol e.g. http and port
|
|
|
|
- REDIS_HOST=archivist-redis # don't add protocol
|
2021-09-05 17:10:14 +00:00
|
|
|
- HOST_UID=1000
|
|
|
|
- HOST_GID=1000
|
2022-04-15 10:56:17 +00:00
|
|
|
- TA_USERNAME=tubearchivist # your initial TA credentials
|
|
|
|
- TA_PASSWORD=verysecret # your initial TA credentials
|
|
|
|
- ELASTIC_PASSWORD=verysecret # set password for Elasticsearch
|
|
|
|
- TZ=America/New_York # set your time zone
|
2021-09-05 17:10:14 +00:00
|
|
|
depends_on:
|
|
|
|
- archivist-es
|
|
|
|
- archivist-redis
|
|
|
|
archivist-redis:
|
2022-04-15 10:56:17 +00:00
|
|
|
image: redislabs/rejson:latest # for arm64 use bbilly1/rejson
|
2021-09-05 17:10:14 +00:00
|
|
|
container_name: archivist-redis
|
|
|
|
restart: always
|
2021-10-26 09:23:41 +00:00
|
|
|
expose:
|
|
|
|
- "6379"
|
2021-09-05 17:10:14 +00:00
|
|
|
volumes:
|
2022-01-10 00:54:23 +00:00
|
|
|
- redis:/data
|
2021-09-05 17:10:14 +00:00
|
|
|
depends_on:
|
|
|
|
- archivist-es
|
|
|
|
archivist-es:
|
2022-04-15 10:56:17 +00:00
|
|
|
image: bbilly1/tubearchivist-es # only for amd64, or use official es 7.17.2
|
2021-09-05 17:10:14 +00:00
|
|
|
container_name: archivist-es
|
|
|
|
restart: always
|
|
|
|
environment:
|
2021-10-28 08:49:58 +00:00
|
|
|
- "xpack.security.enabled=true"
|
2022-04-15 10:56:17 +00:00
|
|
|
- "ELASTIC_PASSWORD=verysecret" # matching Elasticsearch password
|
2021-09-05 17:10:14 +00:00
|
|
|
- "discovery.type=single-node"
|
|
|
|
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
|
|
|
|
ulimits:
|
|
|
|
memlock:
|
|
|
|
soft: -1
|
|
|
|
hard: -1
|
|
|
|
volumes:
|
2022-04-15 10:56:17 +00:00
|
|
|
- es:/usr/share/elasticsearch/data # check for permission error when using bind mount, see readme
|
2021-10-26 09:23:41 +00:00
|
|
|
expose:
|
|
|
|
- "9200"
|
2022-01-10 00:54:23 +00:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
media:
|
|
|
|
cache:
|
|
|
|
redis:
|
2022-02-09 16:38:18 +00:00
|
|
|
es:
|