SelfhostedPro Yacht Versions Save

A web interface for managing docker containers with an emphasis on templating to provide 1 click deployments. Think of it like a decentralized app store for servers that anyone can make packages for.

v0.0.7-alpha-hf-1

2 years ago

Hotfix 1 for v0.0.7 Changelog:

  • Fix for dashboard not loading all apps
  • Fix for projects not appearing when various errors occur
  • Better errors if an app fails to launch
  • Better errors for submitting invalid YAML to a project

v0.0.7-alpha

3 years ago

Yacht Alpha v0.0.7 Released!

Notable Changes:

  • Shipwright a new template builder is released (pre-alpha)
  • Yacht is now a PWA and if published with SSL you'll be able to install it on most devices for easy access.
  • API Key framework so now applications can interact with Yacht directly (found in user settings when auth is enabled).
  • Changed logs and stats to Server Sent Events so websocket support is no longer needed *this may change in the future as I believe it will be needed for container CLI access
  • Redesigned the look of all the main pages
  • Support for command, memory limits, and cpu in templates and deployments.

Bugfixes:

  • Better error handling for Projects.
  • Issue where ports were defined more than once
  • Data in dashboards being off
  • Various UI glitches
  • Other various fixes (view merge request for a full list)

v0.0.6-alpha-hf1

3 years ago

Alpha 6 Hotifx 1

Changelog

  • Added support bundle button to download your docker-compose.yml and all associated logs for you project.
  • Changed the dashboard to significantly improve performance (up to 70% less resource intensive).
  • Optimized the way websockets close (they now close when you navigate away from a page. Previously they would continue to try to send indefinitely).
  • Better application name detection in projects.
  • Fixed deploy from template page in the deploy page.

v0.0.6-alpha

3 years ago

v0.0.6-alpha is here!

UI Changes

This update helps reduce some clutter in the sidebar by bringing in creation of resources into the list view. No more sub-menus for anything other than resources (images, networks, and volumes). image

Compose/Projects

There's now an in-browser compose editor to make creating new projects as easy as possible and this will allow me to add a lot of QoL features such as error checking and snippets in the future. image

Editing

You can now edit running containers! image

Please be careful with this. It will remove the running container and launch a new one with the same settings. If you're doing something advanced that I don't have a field in the deploy form for the new version won't have it. Make sure everything in the deploy form looks correct.

Tags

Now there are tags with the release date available for both the master and develop branches so if I break something it's easy to fix!

Changelog:

  • Authentication Framwork change (to fastapi-jwt-auth)
  • In-browser docker-compose editor
  • Misc. bugfixes
  • Projects, templates, and apps now follow a similar flow to resources (1-click to go to the list and the plus button to create a new one)
  • Env variable to set default template variables (BASE_TEMPLATE_VARIABLES=[{"variable": "!config", "replacement": "/yacht/AppData/Config"}, ...])
  • Editing containers is now available Warning, this can lead to data loss if you don't have a volume or bind setup for storage on the container you're editing. There's a warning in the UI about this.

v0.0.5-alpha

3 years ago

Changelog

Compose:

Docker compose support is now available under the Projects section (default location is /config/compose/ for your docker-compose projects).

This requires you to set /config to a bind mount. If you've already got /config mounted on a volume you can set /compose/ to a bind mount and set the COMPOSE_DIR environment variable equal to /compose/. Then put all of your folders that container docker-compose.yml files into that folder.

image image

DigitalOcean:

There's now a DigitalOcean marketplace app for Yacht. I would love feedback on it if you get the chance to try it out.

Fixes:

  • Fixed !PGID default variable
  • Unset variables trying to be deployed will now throw an error.
  • closes #194
  • closes #193

v0.0.4-hf1

3 years ago

Changelog:

Theming

  • Added theming in server settings
  • Saves the theme to your browser storage
  • Custom themes are able to be created various platforms and built with a buildarg

Fixes:

  • Added error handling to templates and removed the requirement for a type setting
  • Fixed port disappearing when bridge is selected. Should only disappear when host isi.
  • Added none as option for restart_policy
  • Various formatting fixes

v0.0.4-alpha

3 years ago

Changelog:

Core features added:

  • Image managment
  • Volume managment
  • Network management
  • Disable Auth (use -e DISABLE_AUTH=True in your run command to disable authentication)

Apps List:

  • Added filter for columns.

App Deploy Form:

  • Added network_mode and network fields

Image Managment:

  • Added image list
  • Added image details
  • Added basic image pull support

Volume Managment:

  • Added volume list
  • Added volume details
  • Added basic volume creation

Network Managment:

  • Added network list
  • Added network details
  • Added ability to create and delete networks (including macvlan and ipvlan)

Templates:

  • Added network_mode support

Misc:

  • Changed proxy_read_timeout to 300 seconds. If you run into timeout issues when checking for updates let me know.

v0.0.3-alpha-hf1

3 years ago

Fixes update checking for if the image is built locally or missing an image/tag.

v0.0.3-alpha

3 years ago

Change log:

Bug fixes/Minor Changes:

  • Websockets now work with reverse proxies (websocket support required)
  • Reduced data points on dashboard charts from 5 to 3 to increase performance.
  • Misc. other fixes/modifications that I don't remember.

Apps:

  • Check for app updates (green dot indicates there's an update available)
  • One click container upgrades (spins up a watchtower instance with the --run-once flag targeting the selected container)
  • App actions are available from within the app details view
  • Deploy from template page shows a tabbed view of all templates

Templates:

  • Template variables now work with environment variables

Server Settings:

  • Separate purge buttons for each type of resource
  • Updates page to update Yacht from within itself (uses same watchtower method as above)

v0.0.2-alpha

3 years ago

This update brings in some great community requested features. Templates/deploy form additions:

  • Port labels: give descriptions to ports so you know what they're for.
  • Container labels: useful for storing information in docker containers and used for things like traefik.
  • Devices: pass through devices into containers (useful for hardware transcoding)

Frontend changes:

  • Deploy forms:
    • Descriptive errors for the deploy form so you know what went wrong.
    • When a deploy fails due to a duplicated port (or similar issue that creates a container but doesn't run it) the failed container will be removed so you don't run into a duplicate name issue.
    • Moved deploy form buttons to the right so they're under other buttons you may interact with.
  • App pages:
    • Port labels are displayed on the apps list if they are set. (You can hover to get the port number)
    • Container labels and devices added to the app information page
    • Stats graph for CPU will still show even if memory isn't available (mainly affects Pi devices)
    • Added a back button to app pages
  • Dashboard:
    • Stats graph for CPU will still show even if memory isn't available (mainly affects Pi devices)

Backend changes:

  • Added labels, devices, and port labels to template compatibility.
  • Added labels and devices to db.
  • Added alembic to automatically add tables for users who are upgrading to the latest version (runs every time the app starts to make sure all tables that are needed are added)
  • Added check into stats endpoint for memory issue noted above (arm)

If you run into any issues please open one on GitHub and if you have any feature requests please let me know. If you know python or VueJS I'd be happy to help you get your dev environment setup and get some help making this even better.