cic-dw/dev/docker-compose.yaml
Mohamed Sohail 6b71657e5b
sohail/update deps structure (#5)
* 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
2022-05-11 12:32:11 +03:00

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