ott and stuff

This commit is contained in:
bee
2026-06-18 12:25:18 +02:00
parent fa1231d1f8
commit 6873ef44e4
12 changed files with 371 additions and 1 deletions
+59
View File
@@ -0,0 +1,59 @@
version: "3.7"
services:
opentogethertube:
image: dyc3/opentogethertube:latest
container_name: opentogethertube
environment:
- PORT=8080
- REDIS_HOST=redis_db
- REDIS_PORT=6379
- FFPROBE_PATH=/usr/bin/ffprobe
# postgres
- POSTGRES_USER=opentogethertube
- POSTGRES_DB=opentogethertube
- POSTGRES_HOST=postgres_db
- POSTGRES_PASSWORD=postgres
- DOCKER=1
volumes:
- ./env:/app/env
ports:
- 8080:8080
links:
- redis_db
- postgres_db
depends_on:
- redis_db
- postgres_db
redis_db:
container_name: opentogethertube_redis
image: redis
healthcheck:
test: "redis-cli ping"
expose:
- 6379
volumes:
- db-data-redis:/data
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
postgres_db:
container_name: opentogethertube_postgres
image: postgres:15-bullseye
environment:
- POSTGRES_DB=opentogethertube
- POSTGRES_USER=opentogethertube
- POSTGRES_PASSWORD=postgres
healthcheck:
test: "pg_isready -U opentogethertube"
expose:
- 5432
volumes:
- db-data-postgres:/var/lib/postgresql/data
restart: "${DOCKER_RESTART_POLICY:-unless-stopped}"
# shared volume
volumes:
db-data-redis:
driver: local
db-data-postgres:
driver: local