mirror of
https://github.com/grassrootseconomics/eth-tracker.git
synced 2025-02-23 16:08:42 +01:00
28 lines
591 B
YAML
28 lines
591 B
YAML
services:
|
|
nats:
|
|
image: nats:2
|
|
restart: unless-stopped
|
|
command: -js -sd /nats/data -m 8222
|
|
ports:
|
|
- 127.0.0.1:4222:4222
|
|
- 127.0.0.1:8222:8222
|
|
volumes:
|
|
- celo-tracker-nats:/nats/data
|
|
celo-tracker:
|
|
image: celo-tracker:latest
|
|
restart: unless-stopped
|
|
depends_on:
|
|
- nats
|
|
environment:
|
|
- DEV=true
|
|
- TRACKER_JETSTREAM__ENDPOINT=nats://nats:4222
|
|
ports:
|
|
- 127.0.0.1:5001:5001
|
|
volumes:
|
|
- celo-tracker-db:/service/db
|
|
|
|
volumes:
|
|
celo-tracker-nats:
|
|
driver: local
|
|
celo-tracker-db:
|
|
driver: local |