mirror of
https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git
synced 2025-08-14 00:25:46 +02:00
63 lines
1.2 KiB
YAML
63 lines
1.2 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "80:80"
|
|
volumes:
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
depends_on:
|
|
- frontend
|
|
- backend
|
|
restart: always
|
|
|
|
frontend:
|
|
container_name: support-frontend
|
|
build:
|
|
context: .
|
|
dockerfile: docker/frontend/Dockerfile
|
|
volumes:
|
|
- ./frontend:/app
|
|
- /app/node_modules
|
|
environment:
|
|
- NODE_ENV=development
|
|
- VITE_API_URL=/api
|
|
depends_on:
|
|
- backend
|
|
|
|
backend:
|
|
container_name: support-backend
|
|
build:
|
|
context: .
|
|
dockerfile: docker/backend/Dockerfile
|
|
volumes:
|
|
- ./backend:/app
|
|
environment:
|
|
- DATABASE_URL=postgresql://postgres:postgres123@db:5432/support_db
|
|
- REDIS_URL=redis://redis:6379/0
|
|
depends_on:
|
|
- db
|
|
- redis
|
|
|
|
db:
|
|
container_name: support-db
|
|
image: postgres:15
|
|
volumes:
|
|
- postgres_data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_USER=postgres
|
|
- POSTGRES_PASSWORD=postgres123
|
|
- POSTGRES_DB=support_db
|
|
ports:
|
|
- "5432:5432"
|
|
|
|
redis:
|
|
container_name: support-redis
|
|
image: redis:alpine
|
|
volumes:
|
|
- redis_data:/data
|
|
|
|
volumes:
|
|
postgres_data:
|
|
redis_data: |