dockerfiles etc
This commit is contained in:
parent
99eb1da214
commit
e025200ee1
4 changed files with 26 additions and 16 deletions
8
custom/invidious-db/Dockerfile
Normal file
8
custom/invidious-db/Dockerfile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
FROM docker.io/library/postgres:14-bullseye
|
||||||
|
|
||||||
|
RUN apt update && apt install -y \
|
||||||
|
git
|
||||||
|
|
||||||
|
RUN git clone git clone https://github.com/iv-org/invidious /tmp/invidious
|
||||||
|
RUN cp -r /tmp/invidious/config/sql /config/sql
|
||||||
|
RUN cp -r /tmp/invidious/docker/init-invidious-db.sh /docker-entrypoint-initdb.d/init-invidious-db.sh
|
3
custom/invidious/Dockerfile
Normal file
3
custom/invidious/Dockerfile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
FROM quay.io/invidious/invidious
|
||||||
|
|
||||||
|
COPY config.yml /invidious/config/config.yml
|
11
custom/invidious/config.yml
Normal file
11
custom/invidious/config.yml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
db:
|
||||||
|
dbname: invidious
|
||||||
|
user: indivious
|
||||||
|
password: indivious
|
||||||
|
host: invidious-db
|
||||||
|
port: 5432
|
||||||
|
check_tables: true
|
||||||
|
domain: yt.neo.ixvd.net
|
||||||
|
# external_port:
|
||||||
|
# https_only: false
|
||||||
|
# statistics_enabled: false
|
|
@ -180,21 +180,10 @@ services:
|
||||||
- proxy
|
- proxy
|
||||||
|
|
||||||
invidious:
|
invidious:
|
||||||
image: quay.io/invidious/invidious:latest
|
build:
|
||||||
|
context: custom/invidious
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
INVIDIOUS_CONFIG: |
|
|
||||||
db:
|
|
||||||
dbname: invidious
|
|
||||||
user: indivious
|
|
||||||
password: indivious
|
|
||||||
host: invidious-db
|
|
||||||
port: 5432
|
|
||||||
check_tables: true
|
|
||||||
domain: yt.neo.ixvd.net
|
|
||||||
# external_port:
|
|
||||||
# https_only: false
|
|
||||||
# statistics_enabled: false
|
|
||||||
LETSENCRYPT_HOST: "yt.neo.ixvd.net"
|
LETSENCRYPT_HOST: "yt.neo.ixvd.net"
|
||||||
VIRTUAL_HOST: "yt.neo.ixvd.net"
|
VIRTUAL_HOST: "yt.neo.ixvd.net"
|
||||||
VIRTUAL_PORT: 3000
|
VIRTUAL_PORT: 3000
|
||||||
|
@ -211,12 +200,11 @@ services:
|
||||||
- invidious-db
|
- invidious-db
|
||||||
|
|
||||||
invidious-db:
|
invidious-db:
|
||||||
image: docker.io/library/postgres:14
|
build:
|
||||||
|
context: custom/invidious-db
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
- /srv/indivious/other/db/data:/var/lib/postgresql/data
|
- /srv/indivious/other/db/data:/var/lib/postgresql/data
|
||||||
- /srv/indivious/other/db/config/sql:/config/sql
|
|
||||||
- /srv/indivious/other/db/docker/init-invidious-db.sh:/docker-entrypoint-initdb.d/init-invidious-db.sh
|
|
||||||
environment:
|
environment:
|
||||||
POSTGRES_DB: invidious
|
POSTGRES_DB: invidious
|
||||||
POSTGRES_USER: invidious
|
POSTGRES_USER: invidious
|
||||||
|
|
Reference in a new issue