Skip to content

Commit

Permalink
added instructions for docker-compose
Browse files Browse the repository at this point in the history
  • Loading branch information
daisukebtw committed Sep 19, 2024
1 parent 182f645 commit 4d61193
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

```sh
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)
Expand Down

0 comments on commit 4d61193

Please sign in to comment.