43 lines
806 B
YAML
43 lines
806 B
YAML
services:
|
|
nats:
|
|
image: nats:2
|
|
restart: unless-stopped
|
|
command: |
|
|
-js
|
|
-sd /nats/data
|
|
-m 8222
|
|
volumes:
|
|
- nats-data:/nats/data
|
|
ports:
|
|
- 127.0.0.1:4222:4222
|
|
- 127.0.0.1:8222:8222
|
|
networks:
|
|
- inethi
|
|
postgres:
|
|
image: postgres:17-alpine
|
|
restart: unless-stopped
|
|
user: postgres
|
|
env_file:
|
|
- stack.env
|
|
volumes:
|
|
- ./init_db.sql:/docker-entrypoint-initdb.d/init_db.sql
|
|
- postgres-data:/var/lib/postgresql/data
|
|
ports:
|
|
- 127.0.0.1:5432:5432
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|
|
networks:
|
|
- inethi
|
|
|
|
volumes:
|
|
nats-data:
|
|
driver: local
|
|
postgres-data:
|
|
driver: local
|
|
|
|
networks:
|
|
inethi:
|
|
external: true |