planRun / docker-compose.yml
sanbo
update sth. at 2025-01-04 18:31:02
68515e1
raw
history blame
510 Bytes
version: '3.8'
services:
ones:
build:
context: .
target: runner
image: ones:latest
container_name: ones-service
ports:
- "7860:7860"
environment:
- DEBUG=false
- PORT=7860
- PYTHONUNBUFFERED=1
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:7860/"]
interval: 30s
timeout: 10s
retries: 3
logging:
driver: json-file
options:
max-size: "10m"
max-file: "3"