Skip to content

it-tools IT-TOOLS

🛠 Installation

Default Port: 8080

docker run -d --name it-tools --restart unless-stopped -p 8080:80 ghcr.io/corentinth/it-tools:latest

âš™ Config

Make symlinks to repo.

🚀 Upgrade

Warning

The below commands purge any unused Docker images! Use at your own risk!

homelab/docker/it-tools

task upgrade
(
  git pull origin
  docker compose up --force-recreate --build -d
  docker image prune -a -f
)

Traefik

homelab/pve/traefik/conf.d/it-tools.yaml
---
http:
 #region routers 
  routers:
    it-tools:
      entryPoints:
        - "websecure"
      rule: "Host(`it-tools.l.nicholaswilde.io`)"
      middlewares:
        - default-headers@file
        - https-redirectscheme@file
      tls: {}
      service: it-tools
#endregion
#region services
  services:
    it-tools:
      loadBalancer:
        servers:
          - url: "http://192.168.2.52:8080"
        passHostHeader: true
#endregion

Task List

task: Available tasks for this project:
* decrypt:       Decrypt sensitive configuration files using SOPS.
* default:       List all available tasks.
* encrypt:       Encrypt sensitive configuration files using SOPS.
* export:        Export the task list to `task-list.txt`.
* init:          Initialize the application's environment and configuration files.
* pull:          Pull Docker images for the application.
* restart:       Restart the application's Docker containers.
* status:        Check the status of the application's Docker containers.
* stop:          Stop the application's Docker containers.
* up:            Run Docker Compose in the foreground.
* up-d:          Run Docker Compose in the background.
* update:        Update the application or its running containers.
* upgrade:       Upgrade the application by pulling the latest changes and updating.
* watch:         Watch the application's Docker container logs.

🔗 References