Skip to content

Commit 9d6757a

Browse files
committed
feat: add it-tools service template and logo
1 parent 436a1d9 commit 9d6757a

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

public/svgs/it-tools.svg

Lines changed: 6 additions & 0 deletions
Loading

templates/compose/it-tools.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# documentation: https://github.com/corentinth/it-tools
2+
# slogan: IT Tools is a self-hosted solution for managing various IT tasks.
3+
# tags: it-tools,management,self-hosted
4+
# logo: svgs/it-tools.svg
5+
# port: 8383
6+
7+
version: "3.8"
8+
9+
services:
10+
it-tools:
11+
image: corentinth/it-tools:latest
12+
container_name: it-tools
13+
restart: unless-stopped
14+
environment:
15+
- "SERVICE_FQDN_ITTOOLS=${SERVICE_FQDN_ITTOOLS}"
16+
ports:
17+
- "8383:80"
18+
volumes:
19+
- it-tools-data:/app/data
20+
healthcheck:
21+
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
22+
interval: 30s
23+
timeout: 10s
24+
retries: 3
25+
26+
volumes:
27+
it-tools-data:
28+
driver: local

0 commit comments

Comments
 (0)