56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| version: "3.7"
 | |
| services:
 | |
|   invidious:
 | |
|     user: 1000:1000
 | |
|     container_name: invidious
 | |
|     image: quay.io/invidious/invidious:latest
 | |
|     restart: unless-stopped
 | |
|     ports:
 | |
|       - "${APP_PORT}:3000"
 | |
|     environment:
 | |
|       # Please read the following file for a comprehensive list of all available
 | |
|       # configuration options and their associated syntax:
 | |
|       # https://github.com/iv-org/invidious/blob/master/config/config.example.yml
 | |
|       INVIDIOUS_CONFIG: |
 | |
|         db:
 | |
|           dbname: invidious
 | |
|           user: tipi
 | |
|           password: tipi
 | |
|           host: invidious-db
 | |
|           port: 5432
 | |
|         check_tables: true        
 | |
|     healthcheck:
 | |
|       test: wget -nv --tries=1 --spider http://127.0.0.1:3000/api/v1/comments/jNQXAC9IVRw || exit 1
 | |
|       interval: 30s
 | |
|       timeout: 5s
 | |
|       retries: 2
 | |
|     depends_on:
 | |
|       - invidious-db
 | |
|     networks:
 | |
|       - tipi_main_network
 | |
|     labels:
 | |
|       traefik.enable: ${APP_EXPOSED}
 | |
|       traefik.http.routers.invidious.rule: Host(`${APP_DOMAIN}`)
 | |
|       traefik.http.routers.invidious.entrypoints: websecure
 | |
|       traefik.http.routers.invidious.service: invidious
 | |
|       traefik.http.routers.invidious.tls.certresolver: myresolver
 | |
|       traefik.http.services.invidious.loadbalancer.server.port: 3000
 | |
| 
 | |
|   invidious-db:
 | |
|     user: 1000:1000
 | |
|     container_name: invidious-db
 | |
|     image: docker.io/library/postgres:14
 | |
|     restart: unless-stopped
 | |
|     volumes:
 | |
|       - ${APP_DATA_DIR}/data/postgres:/var/lib/postgresql/data
 | |
|       - ${APP_DATA_DIR}/data/init/sql:/config/sql
 | |
|       - ${APP_DATA_DIR}/data/init/init-invidious-db.sh:/docker-entrypoint-initdb.d/init-invidious-db.sh
 | |
|     environment:
 | |
|       POSTGRES_DB: invidious
 | |
|       POSTGRES_USER: tipi
 | |
|       POSTGRES_PASSWORD: tipi
 | |
|     healthcheck:
 | |
|       test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"]
 | |
|     networks:
 | |
|       - tipi_main_network
 | 
