Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cleanarchitecture | 11,339 | 13 days ago | 26 | June 06, 2022 | 26 | mit | C# | |||
Clean Architecture Solution Template for .NET 7 | ||||||||||
Dockerize | 4,590 | 3 months ago | 11 | March 24, 2018 | 56 | mit | Go | |||
Utility to simplify running applications in docker containers | ||||||||||
Templates | 3,160 | 1 | 4 days ago | 33 | May 16, 2016 | 40 | mit | C# | ||
.NET project templates with batteries included, providing the minimum amount of code required to get you going faster. | ||||||||||
Yacht | 2,507 | 21 days ago | 132 | mit | Vue | |||||
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. | ||||||||||
Gomplate | 2,111 | 32 | 15 hours ago | 81 | September 13, 2022 | 31 | mit | Go | ||
A flexible commandline tool for template rendering. Supports lots of local and remote datasources. | ||||||||||
Wemake Django Template | 1,692 | 3 days ago | 31 | mit | Python | |||||
Bleeding edge django template focused on code quality and security. | ||||||||||
Discourse_docker | 1,503 | 2 days ago | 20 | mit | Shell | |||||
A Docker image for Discourse | ||||||||||
Wiremock.net | 995 | 23 | 12 | 3 days ago | 200 | June 10, 2022 | 23 | apache-2.0 | C# | |
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on the functionality from http://WireMock.org, but extended with more functionality. | ||||||||||
Elixir Boilerplate | 937 | 7 days ago | 12 | bsd-3-clause | Elixir | |||||
⚗ The stable base upon which we build our Elixir projects at Mirego. | ||||||||||
Python Project Blueprint | 871 | 3 months ago | 10 | mit | Makefile | |||||
Blueprint/Boilerplate For Python Projects |
Yacht is a container management UI with a focus on templates and 1-click deployments.
I'm currently rewriting the backend in Typescript as an attempt to have a language that more people would contribute to. You can follow development of that here.
If the built in update button isn't working for you try the following command:
docker run --rm -d -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower:latest --cleanup --run-once <container-name>
Currently only linux has been verified as working but we are open to the idea of supporting windows eventually as well.
Keep in mind, this is an alpha so the risk of data loss is real and it may not be stable
Installation documentation can be found here.
Check out the getting started guide if this is the first time you've used Yacht: https://yacht.sh/docs/Installation/Getting_Started
Yacht is also available via the DigitalOcean marketplace:
We can also be found on Linode
If you want something that's not planned please open a feature request issue and we'll see about getting it added.
Currently Yacht is compatible with portainer templates. You'll add a template url in the "Add Template" settings. The the template will be read, separated into apps, and imported into the database. The apps associated with the templates are linked via a db relationship so when the template is removed, so are the apps associated with it. We store the template url as well so we can enable updating templates with a button press.
We recommend starting with:
https://raw.githubusercontent.com/SelfhostedPro/selfhosted_templates/yacht/Template/template.json
In templates you are able to define variables (starting with !
) to have them automatically replaced by whatever variable the user has set in their server settings (ie. !config
will be replaced by /yacht/AppData/Config
by default).
If you're on arm and graphs aren't showing up add the following to your cmdline.txt:
cgroup_enable=cpuset cgroup_enable=memory cgroup_memory=1
You can utilize the following environment variables in Yacht. None of them are mandatory.
Variable | Description |
---|---|
PUID | Set userid that the container will run as. |
PGID | Set groupid that the container will run as. |
SECRET_KEY | Setting this to a random string ensures you won't be logged out in between reboots of Yacht. |
ADMIN_EMAIL | This sets the email for the default Yacht user. |
DISABLE_AUTH | This disables authentication on the backend of Yacht. It's not recommended unless you're using something like Authelia to manage authentication. |
DATABASE_URL | If you want to have Yacht use a database like SQL instead of the built in sqlite on you can put that info here in the following format: postgresql://user:[email protected]/db
|
COMPOSE_DIR | This is the path inside the container which contains your folders that have docker compose projects. (compose tag only) |
If you’re running under WSL2 inside Windows, because of the difference in how permissions are handled. Your essentially inside of a Linux machine accessing a Windows file system. You will need to run after installation before adding the Yacht container:
$ sudo usermod -aG docker $USER
Additional information about this can be found in the Post-installation steps for Linux