Merge pull request #3702 from danielalves96/add-it-tools

feat: add it-tools service template and logo
This commit is contained in:
Andras Bacsai
2024-10-03 21:33:33 +02:00
committed by GitHub
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