25 lines
765 B
YAML
25 lines
765 B
YAML
# Docker compose file for the feed reciever of inv.nadeko.net
|
|
|
|
x-labels: &labels
|
|
labels: [ "com.centurylinklabs.watchtower.scope=invidious" ]
|
|
|
|
services:
|
|
# INVIDIOUS CLEARNET
|
|
invidious-feed-reciever:
|
|
image: "git.nadeko.net/fijxu/invidious:${TAG}"
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:20090:3000"
|
|
volumes:
|
|
- /var/run/postgresql/.s.PGSQL.5432:/var/run/postgresql/.s.PGSQL.5432:rw
|
|
- ./config.yml:/etc/invidious/config.yml:ro
|
|
environment:
|
|
INVIDIOUS_CONFIG_FILE: "/etc/invidious/config.yml"
|
|
<<: *labels
|
|
|
|
valkey:
|
|
image: valkey/valkey:7.2-alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./valkey.conf:/usr/local/etc/valkey/valkey.conf
|
|
command: "valkey-server /usr/local/etc/valkey/valkey.conf"
|