I stumbled across the GitHub page by chance. I’ve been looking for an alternative to Terminus for quite some time. Termix looks really good. Very nice web interface. It’s still a bit buggy in a few places, but it’s quite usable.

“Termix is a web-based server management platform with SSH terminal, tunneling, and file editing capabilities. Here, you can find the repositories for the main Termix server, along with the mobile app, documentation, and support”

  • boebbele@discuss.tchncs.deOP
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    10 hours ago

    My compose:

    services:
      termix:
        image: ghcr.io/lukegus/termix:latest
        container_name: termix
        restart: unless-stopped
        ports:
          - 8081:8081
        volumes:
          - /home/dockervolumes/data:/app/data
        environment:
          PORT: "8081"
    volumes:
      termix-data:
        driver: local
    networks: {}
    

    It works great.