infra/docker-compose.dev.yaml
Metadata
- Purpose: Source artifact in the anchor-msp system.
- Domain:
infrastructure - Language:
yaml - Bytes: 681
- Lines: 38
- Content hash (short):
9987167e - Source (start): infra/docker-compose.dev.yaml:1
- Source (end): infra/docker-compose.dev.yaml:38
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"