22 lines
408 B
YAML
22 lines
408 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
arti-api:
|
|
build: .
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
- artifactory_data:/data
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
artifactory_data:
|
|
driver: local |