Cyber-Chef

https://github.com/gchq/CyberChef

docker run -it -p 8071:80 ghcr.io/gchq/cyberchef:latest

IT-Tools

https://github.com/CorentinTh/it-tools?tab=readme-ov-file

docker run -d --name it-tools --restart unless-stopped -p 8172:80 corentinth/it-tools:latest

FileBrowser

https://filebrowser.org/

docker run -d --restart=always \\
    -v /media/filebrowser/srv:/srv \\
    -v /media/filebrowser/data/filebrowser.db:/database/filebrowser.db \\
    -v /media/filebrowser/root/settings.json:/config/settings.json \\
    -e PUID=$(id -u) \\
    -e PGID=$(id -g) \\
    -e TZ=Europe/Istanbul \\
    -p 99:80 \\
    --name filebrowser \\
    filebrowser/filebrowser:s6

settings.json

{
  "port": 80,
  "baseURL": "/",
  "address": "",
  "log": "stdout",
  "database": "/database/database.db",
  "root": "/srv",
  "allowCommands": true,
  "allowEdit": true,
  "allowNew": true,
  "commands": []
}

Dashy

https://dashy.to/

docker compose up -d

---
version: "3.8"
services:
  dashy:
    # To build from source, replace 'image: lissy93/dashy' with 'build: .'
    # build: .
    image: lissy93/dashy
    container_name: Dashy
    # Pass in your config file below, by specifying the path on your host machine
    volumes:
      - /home/kubilay/Documents/dashy/conf.yml:/app/public/conf.yml
      - /home/kubilay/Documents/dashy/icons/:/app/public/item-icons/
    ports:
      - 4000:80
    # Set any environmental variables
    environment:
      - NODE_ENV=production
    # Specify your user ID and group ID. You can find this by running `id -u` and `id -g`
    #  - UID=1000
    #  - GID=1000
    # Specify restart policy
    restart: unless-stopped
    # Configure healthchecks
    healthcheck:
      test: ['CMD', 'node', '/app/services/healthcheck']
      interval: 1m30s
      timeout: 10s
      retries: 3
      start_period: 40s

Nexus Registry

sudo docker build -t nexus:3.68.1 -f Dockerfile .

sudo docker run -d --restart=always -p 8081-8089:8081-8089 --name nexusv3-68-1 -v /data/nexus/nexus-data:/nexus-data nexus:3.68.1