invidious/docker-compose.yml

24 lines
470 B
YAML
Raw Normal View History

2018-09-26 07:46:08 +00:00
version: '3'
services:
postgres:
build:
context: .
dockerfile: docker/Dockerfile.postgres
restart: unless-stopped
volumes:
- postgresdata:/var/lib/postgresql/data
2019-08-07 08:07:36 +00:00
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
2018-09-26 07:46:08 +00:00
invidious:
build:
context: .
dockerfile: docker/Dockerfile
restart: unless-stopped
ports:
- "127.0.0.1:3000:3000"
2018-09-26 07:46:08 +00:00
depends_on:
- postgres
volumes:
postgresdata: