Python backend for a Slack's kudos plugin.
1# Docker-compose file to launch in the local machine all the services that
2# the project needs to run.
3version: '3'
4
5volumes:
6 postgres_data: {}
7 postgres_data_backups: {}
8
9services:
10
11 postgres:
12 image: dekalabs/postgres:13
13 volumes:
14 - postgres_data:/var/lib/postgresql/data
15 - postgres_data_backups:/backups
16 env_file:
17 - ./.env
18 ports:
19 - "5432:5432"
20
21 redis:
22 image: redis:latest
23 ports:
24 - "6379:6379"