forked from midou/invidious
26 lines
527 B
YAML
26 lines
527 B
YAML
version: '3'
|
|
services:
|
|
postgres:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile.postgres
|
|
restart: unless-stopped
|
|
volumes:
|
|
- postgresdata:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
|
healthcheck:
|
|
test: ["CMD", "pg_isready", "-U", "postgres"]
|
|
invidious:
|
|
build:
|
|
context: .
|
|
dockerfile: docker/Dockerfile
|
|
restart: unless-stopped
|
|
ports:
|
|
- "127.0.0.1:3000:3000"
|
|
depends_on:
|
|
- postgres
|
|
|
|
volumes:
|
|
postgresdata:
|