Skip to main content

infra/docker-compose.dev.yaml

Metadata

Indexed Symbols

No indexed functions/methods detected in this file.

Markdown Headings (if applicable)

No markdown headings detected.

Source Preview

version: "3.9"

services:
postgres:
image: postgres:16
environment:
POSTGRES_USER: anchor
POSTGRES_PASSWORD: anchor
POSTGRES_DB: anchor
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data

redis:
image: redis:7
ports:
- "6379:6379"

nats:
image: nats:2.10-alpine
command: ["-js"]
ports:
- "4222:4222"
- "8222:8222"