mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
- Introduced a new YAML configuration file for imgcompress service. - Configured the service with environment variables for customization.
21 lines
690 B
YAML
21 lines
690 B
YAML
# documentation: https://imgcompress.karimzouine.com
|
|
# slogan: Offline image compression, conversion, and AI background removal for Docker homelabs.
|
|
# category: media
|
|
# tags: compress,photo,server,metadata
|
|
# logo: svgs/imgcompress.png
|
|
# port: 5000
|
|
|
|
services:
|
|
imgcompress:
|
|
image: karimz1/imgcompress:${IMGCOMPRESS_VERSION:-latest}
|
|
container_name: imgcompress
|
|
restart: always
|
|
environment:
|
|
- SERVICE_URL_IMGCOMPRESS_5000
|
|
- DISABLE_LOGO=${DISABLE_LOGO:-false}
|
|
- DISABLE_STORAGE_MANAGEMENT=${DISABLE_STORAGE_MANAGEMENT:-false}
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:5000"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|