Skip to content

v0.2.0

Compare
Choose a tag to compare
@Siumauricio Siumauricio released this 03 Jun 05:25
· 1077 commits to canary since this release

What's Changed 🎊🎊

  • Docker compose support by @Siumauricio in #111
  • Add calcom, pocketbase and plausible templates to the directory
    Screenshot 2024-06-02 at 11 24 26 PM

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:

  1. Go to /dashboard/traefik
  2. Select traefik.yml
  3. 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: true

in 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

Screenshot 2024-06-02 at 11 22 44 PM

Full Changelog: v0.1.0...v0.2.0