JOBot/compose.yml
Lisoveliy 81bf05e3fc
All checks were successful
Publish JOBot on dev / Build and deploy (push) Successful in 21s
fix: fix of compose files
2025-07-18 16:28:10 +03:00

39 lines
599 B
YAML

version: '3.8'
services:
postgres:
image: postgres:15
environment:
POSTGRES_PASSWORD: LocalDbPass
POSTGRES_DB: jobot
volumes:
- postgres_data:/var/lib/postgresql/data
networks:
- jobot
backend:
build:
context: .
dockerfile: JOBot.Backend/Dockerfile
depends_on:
- postgres
ports:
- "5000:5000"
networks:
- jobot
bot:
build:
context: .
dockerfile: JOBot.TClient/Dockerfile
depends_on:
- backend
networks:
- jobot
networks:
jobot:
volumes:
postgres_data: