This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Yacht ====== [[https://github.com/SelfhostedPro/Yacht|Yacht]] is similar to Portainer but has a nicer UI. It sacrifices some functionality (most notably a simple means to shell into the container) but it is under active development. Whereas Portainer requires an upgrade to their Business Edition to have additional users, Yacht will be adding that functionality soon. (I will then be able to add a guest user so that public users can see what I’m running in my homelab.) Yacht is accessible at http://10.1.1.8:8001 or externally at https://yacht.donferris.me ===== Setup ===== Setup was smooth and simple. I created a stack in Portainer with this docker-compose.yaml: version: "3" services: yacht: container_name: yacht restart: unless-stopped ports: - 8001:8000 volumes: - ./yacht-config:/config - /var/run/docker.sock:/var/run/docker.sock image: selfhostedpro/yacht