mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 06:28:18 +01:00
17 lines
299 B
YAML
17 lines
299 B
YAML
|
|
services:
|
||
|
|
db:
|
||
|
|
image: postgres:16.2-alpine
|
||
|
|
environment:
|
||
|
|
POSTGRES_DB: postgres
|
||
|
|
POSTGRES_USER: postgres
|
||
|
|
POSTGRES_PASSWORD: postgres
|
||
|
|
ports:
|
||
|
|
- "5432:5432"
|
||
|
|
|
||
|
|
nats:
|
||
|
|
image: nats:2.9.25-scratch
|
||
|
|
ports:
|
||
|
|
- "4222:4222"
|
||
|
|
- "8222:8222"
|
||
|
|
command: "--js"
|