diff --git a/README.md b/README.md index 0814fb33..7cfc863c 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,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 @@ -47,6 +47,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) diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..5290fdfb --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,8 @@ +services: + it-tools: + container_name: it-tools + image: corentinth/it-tools:latest + restart: unless-stopped + ports: + - 8080:80 +