gitea, notion webhook
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
584 B

services:
slack-notifier:
build: .
command: ["-env", "prod"] # 환경은 실행 명령어로 분기 (JSON 로그 + logs/app.log)
env_file:
- .env.prod # 비밀값/설정 (ADDR은 넣지 말 것 — 컨테이너는 :8000 고정)
ports:
- "6000:8000" # host:container — 리버스 프록시는 host:6000 → 컨테이너 8000
volumes:
- ./data:/app/data # 유저 매핑(data/mappings.json) 영속화
- ./logs:/app/logs # production 로그(logs/app.log) 영속화
restart: unless-stopped