1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-12-16 06:46:17 +00:00

Миграции

This commit is contained in:
mihalin
2021-07-11 12:53:33 +03:00
parent c5e0192d24
commit 415ec12b2f
22 changed files with 435 additions and 233 deletions

View File

@@ -0,0 +1,30 @@
version: '3'
services:
postgres:
image: kartoza/postgis
restart: unless-stopped
env_file:
- release.env
volumes:
- database:/var/lib/postgresql/data
redis:
image: 'bitnami/redis:latest'
restart: unless-stopped
environment:
- ALLOW_EMPTY_PASSWORD=yes
volumes:
- redis-db:/bitnami/redis/data
env_file:
- release.env
bot:
build: .
restart: unless-stopped
env_file:
- release.env
depends_on:
- postgres
- redis
volumes:
database:
redis-db: