v0.2.0
What's Changed 🎊🎊
- Docker compose support by @Siumauricio in #111
- Add
calcom,pocketbaseandplausibletemplates to the directory

Docker Compose Support
We introduce docker compose support, deploy applications from your github or deploy templates open source easily.
Documentation: https://docs.dokploy.com/docker-compose/overview
Note Atention:
For new installations this problem has been adressed
We need to add the docker provider to traefik, this in order to enable templates and docker compose routing, please do the following:
- Go to
/dashboard/traefik - Select
traefik.yml - You will have this code
- providers:
- file:
- directory: /etc/dokploy/traefik/dynamic
- watch: true
+ providers:
+ docker:
+ exposedByDefault: false
+ file:
+ directory: /etc/dokploy/traefik/dynamic
+ watch: truein the entrypoints
- entryPoints:
- web:
- address: ':80'
- http:
- redirections:
- entryPoint:
- to: websecure
- scheme: https
- permanent: true
+ entryPoints:
+ web:
+ address: ':80'So at the end your traefik.yml should look like this, don't forget to restart the traefik, go to /dashboard/settings/server/ -> traefik then reload to take the new changes
Full Changelog: v0.1.0...v0.2.0
