feat: add it-tools service template and logo

This commit is contained in:
Daniel Alves
2024-10-03 15:52:33 -03:00
parent 436a1d945f
commit 9d6757aeb7
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
# 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