- Watchtower 제외 라벨 추가하여 자동 업데이트 방지 - 버전 체크 방식 제거, 매일 12시 전체 동기화로 변경 - 봇 관리 UI를 다른 봇들과 동일하게 통일 (버전 → 업데이트 간격) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
services:
|
|
fromis9-frontend:
|
|
build: ./frontend
|
|
container_name: fromis9-frontend
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
volumes:
|
|
- ./frontend:/app
|
|
depends_on:
|
|
- fromis9-backend
|
|
networks:
|
|
- app
|
|
restart: unless-stopped
|
|
|
|
fromis9-backend:
|
|
build: ./backend
|
|
container_name: fromis9-backend
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./backend:/app
|
|
networks:
|
|
- app
|
|
- db
|
|
restart: unless-stopped
|
|
|
|
meilisearch:
|
|
image: getmeili/meilisearch:latest
|
|
container_name: fromis9-meilisearch
|
|
labels:
|
|
- "com.centurylinklabs.watchtower.enable=false"
|
|
environment:
|
|
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY}
|
|
volumes:
|
|
- ./meilisearch_data:/meili_data
|
|
networks:
|
|
- app
|
|
restart: unless-stopped
|
|
|
|
redis:
|
|
image: redis:7-alpine
|
|
container_name: fromis9-redis
|
|
volumes:
|
|
- ./redis_data:/data
|
|
networks:
|
|
- app
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
app:
|
|
external: true
|
|
db:
|
|
external: true
|