Files
startover/docker-compose.yml
Johngreen 7f59b94dcf Rename project from Re:Link to Startover
Rebrand repository from "Re:Link" to "Startover" across the codebase. Updates include package names and scopes (@relink/* -> @startover/*), import paths, Next.js transpile settings, vitest name, UI text and docs, Dockerfile and CI/workflow names, deploy scripts and repo paths, and example/production env values. Also add auth-related env vars, an apps/web .env symlink, and small formatting/typing cleanups in several TSX/TS files and tests to accommodate the rename.
2026-03-08 20:22:08 +09:00

44 lines
975 B
YAML

services:
postgres:
image: postgis/postgis:16-3.4-alpine
ports:
- "5432:5432"
environment:
POSTGRES_USER: startover
POSTGRES_PASSWORD: startover_dev
POSTGRES_DB: startover_dev
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U startover -d startover_dev"]
interval: 5s
timeout: 5s
retries: 5
postgres-test:
image: postgis/postgis:16-3.4-alpine
ports:
- "5433:5432"
environment:
POSTGRES_USER: startover
POSTGRES_PASSWORD: startover_test
POSTGRES_DB: startover_test
healthcheck:
test: ["CMD-SHELL", "pg_isready -U startover -d startover_test"]
interval: 5s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
ports:
- "6379:6379"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 5s
timeout: 5s
retries: 5
volumes:
postgres_data: