Spaces:
Paused
Paused
File size: 410 Bytes
c74db65 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | services:
outlook2api:
build:
context: .
dockerfile: Dockerfile.api
ports:
- "${OUTLOOK2API_PORT:-8001}:8001"
volumes:
- ./data:/app/data
env_file:
- .env
restart: unless-stopped
register:
build:
context: .
dockerfile: Dockerfile.register
env_file:
- .env
volumes:
- ./output:/app/output
profiles:
- register
|