Files
links/docker-compose.yml
Andrey K. Choi 735c1984f9
Some checks failed
continuous-integration/drone/push Build is failing
secrutiry update
2025-11-04 13:44:00 +09:00

62 lines
1.5 KiB
YAML

version: '3.8'
services:
web:
build: ./backend
command: gunicorn backend.wsgi:application --bind 0.0.0.0:8000
volumes:
- ./backend:/app
- media_volume:/app/storage
- static_volume:/app/staticfiles
env_file:
- .env
ports:
- "8000:8000"
depends_on:
- db
restart: unless-stopped
networks:
- catlink-network
db:
image: postgres:14
volumes:
- postgres_data:/var/lib/postgresql/data/
- ./database/postgresql.conf:/etc/postgresql/postgresql.conf
- ./database/pg_hba.conf:/etc/postgresql/pg_hba.conf
env_file:
- .env
environment:
- POSTGRES_INITDB_ARGS=--auth-host=scram-sha-256
restart: unless-stopped
# Убираем внешний порт для безопасности - доступ только внутри Docker сети
# ports:
# - "5432:5432"
networks:
- catlink-network
command: postgres -c config_file=/etc/postgresql/postgresql.conf -c hba_file=/etc/postgresql/pg_hba.conf
frontend:
build: ./frontend/linktree-frontend
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8000
restart: unless-stopped
depends_on:
- web
networks:
- catlink-network
# Создаем изолированную сеть для безопасности
networks:
catlink-network:
driver: bridge
ipam:
config:
- subnet: 172.20.0.0/16
volumes:
postgres_data:
media_volume:
static_volume: