fix?
This commit is contained in:
parent
3c94dd81e0
commit
63ba0eb66c
2 changed files with 9 additions and 4 deletions
|
@ -6,4 +6,9 @@ RUN apt update && apt install -y \
|
|||
RUN git clone https://github.com/iv-org/invidious /tmp/invidious
|
||||
RUN mkdir -p /config/sql
|
||||
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
|
||||
RUN cp -r /tmp/invidious/docker/init-invidious-db.sh /docker-entrypoint-initdb.d/init-invidious-db.sh
|
||||
|
||||
ENV POSTGRES_DB=invidious_db
|
||||
ENV POSTGRES_USER=invidious_username
|
||||
ENV POSTGRES_PASSWORD=invidious_password
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
db:
|
||||
dbname: invidious
|
||||
user: indivious
|
||||
password: indivious
|
||||
dbname: invidious_db
|
||||
user: indivious_user
|
||||
password: indivious_password
|
||||
host: invidious-db
|
||||
port: 5432
|
||||
check_tables: true
|
||||
|
|
Reference in a new issue