mirror of
https://github.com/GrassrootsEconomics/cic-dw.git
synced 2024-10-31 23:16:46 +01:00
Mohamed Sohail
6b71657e5b
* refactor: syncer structure - move syncer jobs to internal dir * refactor: queries struct and pkg updates - update cic-go to latest - separate sql queries by logic * ci: add dependabot
25 lines
507 B
YAML
25 lines
507 B
YAML
services:
|
|
postgres:
|
|
image: postgres:14-alpine
|
|
restart: unless-stopped
|
|
network_mode: "host"
|
|
environment:
|
|
- POSTGRES_PASSWORD=postgres
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_DB=cic_dw
|
|
volumes:
|
|
- cic-dw-db:/var/lib/postgresql/data
|
|
ports:
|
|
- '5432:5432'
|
|
redis:
|
|
image: redis:6-alpine
|
|
restart: unless-stopped
|
|
network_mode: "host"
|
|
command: redis-server --loglevel warning
|
|
ports:
|
|
- '6379:6379'
|
|
|
|
volumes:
|
|
cic-dw-db:
|
|
driver: local
|