- 프론트엔드+백엔드 단일 컨테이너로 통합 (Dockerfile) - Fastify 정적 파일 서빙 + SPA fallback - @fastify/static 추가 - Caddy 프록시 대상 변경 (traeon-frontend → traeon) - 체크박스 w-5/w-0 CSS 충돌 수정 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
534 B
YAML
29 lines
534 B
YAML
services:
|
|
traeon:
|
|
build: .
|
|
container_name: traeon
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
env_file:
|
|
- .env
|
|
depends_on:
|
|
- delivery-tracker
|
|
networks:
|
|
- app
|
|
- db
|
|
restart: unless-stopped
|
|
|
|
delivery-tracker:
|
|
image: delivery-tracker:latest
|
|
container_name: delivery-tracker
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
networks:
|
|
- app
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
app:
|
|
external: true
|
|
db:
|
|
external: true
|