cic-custodial/docker-compose.yaml

35 lines
762 B
YAML

version: '3.9'
services:
redis:
image: redis:6-alpine
restart: unless-stopped
command: redis-server --loglevel warning
ports:
- '6379:6379'
postgres:
image: postgres:14-alpine
restart: unless-stopped
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
- POSTGRES_DB=cic_custodial
volumes:
- cic-custodial:/var/lib/postgresql/data
ports:
- '5432:5432'
asynqmon:
image: hibiken/asynqmon
restart: unless-stopped
ports:
- '8080:8080'
cic-custodial:
image: ghcr.io/grassrootseconomics/cic-custodial/cic-custodial:latest
restart: unless-stopped
env_file:
- .env
ports:
- '8080:8080'
volumes:
cic-custodial:
driver: local