1
0
mirror of https://github.com/lukevella/rallly-selfhosted.git synced 2025-12-10 19:00:12 +01:00
rallly-selfhosted/docker-compose.yml
2024-07-03 09:04:01 +01:00

31 lines
601 B
YAML

services:
rallly_db:
image: postgres:14.2
restart: always
volumes:
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=db
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 5s
timeout: 5s
retries: 5
rallly:
image: lukevella/rallly:latest
restart: always
depends_on:
- rallly_db
ports:
- 3000:3000
environment:
- DATABASE_URL=postgres://postgres:postgres@rallly_db/db
env_file:
- config.env
volumes:
db-data:
driver: local