2022-02-22 06:41:44 +05:30
# This docker-compose file is made for development purpose and build an image from source, if you want to use Invidious in production, see the documentation.
2022-02-22 06:24:36 +05:30
version : "3"
2018-09-26 13:16:08 +05:30
services :
2022-02-22 06:24:36 +05:30
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 :
INVIDIOUS_CONFIG : |
2022-02-22 06:24:36 +05:30
# Please read the following file for a comprehensive list of all available
# configuration options and their associated syntax:
# https://github.com/iv-org/invidious/blob/master/config/config.example.yml
2020-06-17 13:29:21 +05:30
check_tables : true
2020-03-05 00:03:13 +05:30
db :
2022-02-22 06:24:36 +05:30
dbname : invidious
2020-03-05 00:03:13 +05:30
user : kemal
password : kemal
2022-02-22 06:24:36 +05:30
host : invidious-postgres
2020-03-05 00:03:13 +05:30
port : 5432
2022-02-22 06:24:36 +05:30
# https_only: false
# domain:
# external_port:
2021-10-26 13:43:39 +05:30
healthcheck :
test : wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/comments/jNQXAC9IVRw || exit 1
interval : 30s
timeout : 5s
retries : 2
2018-09-26 13:16:08 +05:30
depends_on :
2022-02-22 06:24:36 +05:30
- invidious-postgres
invidious-postgres :
image : postgres:14
restart : unless-stopped
volumes :
- postgresdata:/var/lib/postgresql/data
- ./config/sql:/config/sql
- ./docker/init-invidious-db.sh:/docker-entrypoint-initdb.d/init-invidious-db.sh
environment :
POSTGRES_DB : invidious
POSTGRES_USER : kemal
POSTGRES_PASSWORD : kemal
healthcheck :
test : [ "CMD-SHELL" , "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB" ]
2018-09-26 13:16:08 +05:30
volumes :
postgresdata :