1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Remove TELEGRAM_BOT_TOKEN from configuration

This commit is contained in:
MoonTestUse1
2025-01-06 09:36:22 +06:00
parent 7330279369
commit 4aeb9a681a
2 changed files with 40 additions and 5 deletions

View File

@@ -2,20 +2,19 @@ version: '3.8'
services:
backend:
image: ${CI_REGISTRY_IMAGE}/backend:latest
image: backend:latest
restart: always
environment:
- DATABASE_URL=postgresql://postgres:postgres@db:5432/app
- REDIS_HOST=redis
- REDIS_PORT=6379
- SECRET_KEY=${SECRET_KEY}
- TELEGRAM_BOT_TOKEN=${TELEGRAM_BOT_TOKEN}
depends_on:
- db
- redis
frontend:
image: ${CI_REGISTRY_IMAGE}/frontend:latest
image: frontend:latest
restart: always
ports:
- "80:80"