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.
 
 
 
motief/docker-compose.yml

20 lines
455 B

version: '3.8'
services:
stemwijzer:
build: .
image: stemwijzer:latest
container_name: stemwijzer_app
restart: unless-stopped
ports:
- "8501:8501"
volumes:
- ./data:/home/app/app/data:rw
environment:
- PYTHONPATH=/home/app/app
- OPENROUTER_API_KEY
- OTHER_SECRET
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8501/"]
interval: 30s
timeout: 3s
retries: 3