2018-09-26 13:16:08 +05:30
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: docker/Dockerfile.postgres
|
|
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
|
|
- postgresdata:/var/lib/postgresql/data
|
2019-08-07 13:37:36 +05:30
|
|
|
healthcheck:
|
|
|
|
test: ["CMD", "pg_isready", "-U", "postgres"]
|
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
|
|
|
|
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:
|