update defaults
This commit is contained in:
parent
e8c9328835
commit
4e72f2ce12
1 changed files with 31 additions and 32 deletions
|
@ -7,20 +7,10 @@ invidious_internal_port: 3000
|
||||||
#handle_ufw will allow access to individious_internal_port from everywhere, use it only if Invidious handles SSL or you don't want to use SSL (what?)
|
#handle_ufw will allow access to individious_internal_port from everywhere, use it only if Invidious handles SSL or you don't want to use SSL (what?)
|
||||||
handle_ufw: false
|
handle_ufw: false
|
||||||
handle_apache2_reverse_proxy: false
|
handle_apache2_reverse_proxy: false
|
||||||
docker_compose_options:
|
|
||||||
version: "3"
|
|
||||||
services:
|
|
||||||
invidious:
|
|
||||||
image: quay.io/invidious/invidious:latest
|
|
||||||
# image: quay.io/invidious/invidious:latest-arm64 # ARM64/AArch64 devices
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "127.0.0.1:3300:3300"
|
|
||||||
environment:
|
|
||||||
# Please read the following file for a comprehensive list of all available
|
# Please read the following file for a comprehensive list of all available
|
||||||
# configuration options and their associated syntax:
|
# configuration options and their associated syntax:
|
||||||
# https://github.com/iv-org/invidious/blob/master/config/config.example.yml
|
# https://github.com/iv-org/invidious/blob/master/config/config.example.yml
|
||||||
INVIDIOUS_CONFIG: |
|
invidious_config:
|
||||||
db:
|
db:
|
||||||
dbname: invidious
|
dbname: invidious
|
||||||
user: kemal
|
user: kemal
|
||||||
|
@ -48,6 +38,15 @@ docker_compose_options:
|
||||||
log_level: All
|
log_level: All
|
||||||
channel_threads: 3
|
channel_threads: 3
|
||||||
use_pubsub_feeds: true
|
use_pubsub_feeds: true
|
||||||
|
docker_compose_options:
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
invidious:
|
||||||
|
image: quay.io/invidious/invidious:latest
|
||||||
|
# image: quay.io/invidious/invidious:latest-arm64 # ARM64/AArch64 devices
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:3300:3300"
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: wget -nv --tries=1 --spider http://127.0.0.1:3300/api/v1/comments/jNQXAC9IVRw || exit 1
|
test: wget -nv --tries=1 --spider http://127.0.0.1:3300/api/v1/comments/jNQXAC9IVRw || exit 1
|
||||||
interval: 30s
|
interval: 30s
|
||||||
|
|
Loading…
Reference in a new issue