Files
links/docker-compose.yml
Andrey K. Choi 2b3cb736d5
Some checks failed
continuous-integration/drone/push Build is failing
link fix
2025-11-02 20:07:15 +09:00

42 lines
786 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
ports:
- "5432:5432"
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: