mirror of
https://github.com/ershisan99/coolify.git
synced 2025-12-16 20:49:28 +00:00
29 lines
666 B
YAML
29 lines
666 B
YAML
# documentation: https://github.com/corentinth/it-tools
|
|
# slogan: IT Tools is a self-hosted solution for managing various IT tasks.
|
|
# tags: it-tools,management,self-hosted
|
|
# logo: svgs/it-tools.svg
|
|
# port: 8383
|
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
it-tools:
|
|
image: corentinth/it-tools:latest
|
|
container_name: it-tools
|
|
restart: unless-stopped
|
|
environment:
|
|
- "SERVICE_FQDN_ITTOOLS=${SERVICE_FQDN_ITTOOLS}"
|
|
ports:
|
|
- "8383:80"
|
|
volumes:
|
|
- it-tools-data:/app/data
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
|
|
volumes:
|
|
it-tools-data:
|
|
driver: local
|