2018-09-26 13:16:08 +05:30
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
postgres:
|
2020-05-31 13:35:53 +05:30
|
|
|
image: postgres:10
|
2018-09-26 13:16:08 +05:30
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- postgresdata:/var/lib/postgresql/data
|
2020-05-31 13:32:05 +05:30
|
|
|
- ./config/sql:/config/sql
|
|
|
|
- ./docker/init-invidious-db.sh:/docker-entrypoint-initdb.d/init-invidious-db.sh
|
2020-05-31 13:27:33 +05:30
|
|
|
environment:
|
|
|
|
POSTGRES_DB: invidious
|
|
|
|
POSTGRES_PASSWORD: kemal
|
|
|
|
POSTGRES_USER: kemal
|
2019-08-07 13:37:36 +05:30
|
|
|
healthcheck:
|
2021-08-13 01:25:10 +05:30
|
|
|
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER"]
|
2018-09-26 13:16:08 +05:30
|
|
|
invidious:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: docker/Dockerfile
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
2019-06-17 20:16:37 +05:30
|
|
|
- "127.0.0.1:3000:3000"
|
2020-03-05 00:03:13 +05:30
|
|
|
environment:
|
|
|
|
# Adapted from ./config/config.yml
|
|
|
|
INVIDIOUS_CONFIG: |
|
|
|
|
channel_threads: 1
|
2020-06-17 13:29:21 +05:30
|
|
|
check_tables: true
|
2020-03-05 00:03:13 +05:30
|
|
|
feed_threads: 1
|
|
|
|
db:
|
|
|
|
user: kemal
|
|
|
|
password: kemal
|
|
|
|
host: postgres
|
|
|
|
port: 5432
|
|
|
|
dbname: invidious
|
|
|
|
full_refresh: false
|
|
|
|
https_only: false
|
|
|
|
domain:
|
2018-09-26 13:16:08 +05:30
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
postgresdata:
|