Files
links/.history/docker-compose_20251029190616.yml
2025-10-29 20:22:35 +09:00

40 lines
755 B
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
db:
image: postgres:14
volumes:
- postgres_data:/var/lib/postgresql/data/
env_file:
- .env
restart: unless-stopped
frontend:
build: ./frontend/linktree-frontend
ports:
- "3000:3000"
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8000
restart: unless-stopped
depends_on:
- web
volumes:
postgres_data:
media_volume:
static_volume: