invidious/docker-compose.yml

53 行
1.5 KiB
YAML
Raw 通常表示 履歴

# 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 09:54:36 +09:00
version: "3"
2018-09-26 16:46:08 +09:00
services:
2022-02-22 09:54:36 +09:00
2018-09-26 16:46:08 +09:00
invidious:
build:
context: .
dockerfile: docker/Dockerfile
restart: unless-stopped
ports:
- "127.0.0.1:3000:3000"
environment:
2022-02-22 09:54:36 +09:00
# 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
2022-02-22 10:24:43 +09:00
INVIDIOUS_CONFIG: |
db:
2022-02-22 09:54:36 +09:00
dbname: invidious
user: kemal
password: kemal
2022-02-22 09:54:36 +09:00
host: invidious-postgres
port: 5432
check_tables: true
2022-02-22 09:54:36 +09:00
# external_port:
# domain:
# https_only: false
# statistics_enabled: false
2021-10-26 17:13:39 +09:00
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 16:46:08 +09:00
depends_on:
2022-02-22 09:54:36 +09:00
- invidious-postgres
invidious-postgres:
2022-02-22 10:43:25 +09:00
image: postgres:14-alpine
2022-02-22 09:54:36 +09:00
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 16:46:08 +09:00
volumes:
postgresdata: