mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-06-14 18:25:14 -04:00
Merge af63ce48c7
into 07eea0f484
This commit is contained in:
commit
1cee475278
2 changed files with 20 additions and 1 deletions
13
README.md
13
README.md
|
@ -15,7 +15,7 @@ You have an idea of a tool? Submit a [feature request](https://github.com/Corent
|
||||||
## Self host
|
## Self host
|
||||||
|
|
||||||
Self host solutions for your homelab
|
Self host solutions for your homelab
|
||||||
|
#### Using Docker
|
||||||
**From docker hub:**
|
**From docker hub:**
|
||||||
|
|
||||||
```sh
|
```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
|
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:**
|
**Other solutions:**
|
||||||
|
|
||||||
- [Cloudron](https://www.cloudron.io/store/tech.ittools.cloudron.html)
|
- [Cloudron](https://www.cloudron.io/store/tech.ittools.cloudron.html)
|
||||||
|
|
8
docker-compose.yml
Normal file
8
docker-compose.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
services:
|
||||||
|
it-tools:
|
||||||
|
container_name: it-tools
|
||||||
|
image: corentinth/it-tools:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- 8080:80
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue