This commit is contained in:
Vitali Aleksandrov 2025-04-13 04:09:51 +02:00 committed by GitHub
commit 1cee475278
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 1 deletions

View file

@ -15,7 +15,7 @@ You have an idea of a tool? Submit a [feature request](https://github.com/Corent
## Self host
Self host solutions for your homelab
#### Using Docker
**From docker hub:**
```sh
@ -28,6 +28,17 @@ docker run -d --name it-tools --restart unless-stopped -p 8080:80 corentinth/it-
docker run -d --name it-tools --restart unless-stopped -p 8080:80 ghcr.io/corentinth/it-tools:latest
```
#### Using Docker Compose
```yml
services:
it-tools:
container_name: it-tools
image: corentinth/it-tools:latest
restart: unless-stopped
ports:
- 8080:80
```
**Other solutions:**
- [Cloudron](https://www.cloudron.io/store/tech.ittools.cloudron.html)

8
docker-compose.yml Normal file
View file

@ -0,0 +1,8 @@
services:
it-tools:
container_name: it-tools
image: corentinth/it-tools:latest
restart: unless-stopped
ports:
- 8080:80