mirror of https://github.com/iv-org/invidious.git
Address gitignore persistence
This commit is contained in:
parent
b95a4e8432
commit
7b757aaf9c
|
@ -9,4 +9,4 @@
|
||||||
/config/config.yml
|
/config/config.yml
|
||||||
.DS_Store
|
.DS_Store
|
||||||
docker-compose.yml
|
docker-compose.yml
|
||||||
Dockerfile
|
docker/Dockerfile
|
|
@ -26,6 +26,7 @@ services:
|
||||||
host: invidious-db
|
host: invidious-db
|
||||||
port: 5432
|
port: 5432
|
||||||
check_tables: true
|
check_tables: true
|
||||||
|
log_level: Info
|
||||||
# external_port:
|
# external_port:
|
||||||
# domain:
|
# domain:
|
||||||
# https_only: false
|
# https_only: false
|
||||||
|
@ -53,5 +54,20 @@ services:
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
|
||||||
|
|
||||||
|
invidious-pgadmin:
|
||||||
|
image: docker.io/dpage/pgadmin4:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
- PGADMIN_DEFAULT_EMAIL=*******
|
||||||
|
- PGADMIN_DEFAULT_PASSWORD=*******
|
||||||
|
- PGADMIN_DISABLE_POSTFIX=1
|
||||||
|
- GUNICORN_ACCESS_LOGFILE=/dev/null
|
||||||
|
- GUNICORN_THREADS=1
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:5050:80"
|
||||||
|
depends_on:
|
||||||
|
invidious-db:
|
||||||
|
condition: service_healthy
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgresdata:
|
postgresdata:
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
<div class="compilation-video-timestamp-set">
|
<div class="compilation-video-timestamp-set">
|
||||||
<p style="margin-right:10px;">from</p>
|
<p style="margin-right:10px;">from</p>
|
||||||
<input class="compilation-video-timestamp" placeholder="0:00" type="text">
|
<input class="compilation-video-timestamp" placeholder="0:00" type="text">
|
||||||
<p style="margin-right:10px;">to</p>
|
<p style="margin-right:10px; margin-left:10px">to</p>
|
||||||
<input value="00:00:00" type="time" step="1">
|
<input value="00:00:00" type="time" step="1">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue