mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
43 lines
1,014 B
YAML
43 lines
1,014 B
YAML
|
|
# Development infrastructure services only (Postgres + Redis).
|
||
|
|
# Use this when developing locally against the source code.
|
||
|
|
#
|
||
|
|
# Usage:
|
||
|
|
# docker compose -f docker-compose.dev.yml up -d
|
||
|
|
# docker compose -f docker-compose.dev.yml down # stop
|
||
|
|
# docker compose -f docker-compose.dev.yml down -v # stop + wipe data
|
||
|
|
|
||
|
|
name: twenty-dev
|
||
|
|
|
||
|
|
services:
|
||
|
|
db:
|
||
|
|
image: postgres:16
|
||
|
|
volumes:
|
||
|
|
- dev-db-data:/var/lib/postgresql/data
|
||
|
|
ports:
|
||
|
|
- "5432:5432"
|
||
|
|
environment:
|
||
|
|
POSTGRES_USER: postgres
|
||
|
|
POSTGRES_PASSWORD: postgres
|
||
|
|
POSTGRES_DB: default
|
||
|
|
healthcheck:
|
||
|
|
test: pg_isready -U postgres -h localhost -d postgres
|
||
|
|
interval: 5s
|
||
|
|
timeout: 5s
|
||
|
|
retries: 10
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
redis:
|
||
|
|
image: redis:7
|
||
|
|
ports:
|
||
|
|
- "6379:6379"
|
||
|
|
command: ["--maxmemory-policy", "noeviction"]
|
||
|
|
healthcheck:
|
||
|
|
test: ["CMD", "redis-cli", "ping"]
|
||
|
|
interval: 5s
|
||
|
|
timeout: 5s
|
||
|
|
retries: 10
|
||
|
|
restart: unless-stopped
|
||
|
|
|
||
|
|
volumes:
|
||
|
|
dev-db-data:
|