30 lines
752 B
YAML
30 lines
752 B
YAML
services:
|
|
gnu-autouploader:
|
|
build:
|
|
context: .
|
|
dockerfile: ./build/autouploader/Dockerfile
|
|
image: reg.firstgarden.co.kr/gnu-autouploader:latest
|
|
container_name: gnu-autouploader
|
|
volumes:
|
|
- ./data:/data
|
|
# - ./autouploader:/app
|
|
restart: unless-stopped
|
|
|
|
fg-webhook:
|
|
build:
|
|
context: ./build/webhook
|
|
dockerfile: Dockerfile
|
|
image: reg.firstgarden.co.kr/fg-webhook:latest
|
|
container_name: fg-webhook
|
|
volumes:
|
|
- ./data:/data
|
|
- ./webhook:/app
|
|
ports:
|
|
- 5151:5000
|
|
environment:
|
|
- DOMAIN=https://webhook.firstgarden.co.kr
|
|
- FLASK_DEBUG=1 #디버그 활성화
|
|
#environment:
|
|
# - DOMAIN=https://webhook.firstgarden.co.kr
|
|
restart: unless-stopped
|