mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
- Warn on startup if deprecated STIRLING_VARIANT env var is set - Broaden upscale.py exception handling to catch RuntimeError/OSError for Lanczos fallback (not just ImportError) - Add QEMU + multi-arch (amd64+arm64) to CI Docker build test - Use .get() instead of .all() for single-row health check query - Restore container_name in docker-compose.yml for backwards compat
27 lines
569 B
YAML
27 lines
569 B
YAML
services:
|
|
stirling-image:
|
|
build:
|
|
context: ..
|
|
dockerfile: docker/Dockerfile
|
|
image: stirlingimage/stirling-image:latest
|
|
container_name: stirling-image
|
|
ports:
|
|
- "1349:1349"
|
|
volumes:
|
|
- stirling-data:/data
|
|
- stirling-workspace:/tmp/workspace
|
|
environment:
|
|
- AUTH_ENABLED=true
|
|
- DEFAULT_USERNAME=admin
|
|
- DEFAULT_PASSWORD=admin
|
|
restart: unless-stopped
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
volumes:
|
|
stirling-data:
|
|
stirling-workspace:
|