Dokploy

Utilities

Utilities for your Docker Compose application

Dokploy provides a set of utilities to enhance your Docker Compose application deployment experience.

Isolated Deployments

All open source templates come with this feature enabled by default.

This feature allows you to deploy your application in a separate network, isolated from other applications. This isolation is particularly useful when you need to deploy multiple instances of the same application.

For example, if you want to deploy two WordPress instances, you would typically encounter service naming conflicts since they share the same network (dokploy-network). Docker doesn't allow services with identical names in the same network. Consider this typical WordPress service:

services:
  wordpress:
    image: wordpress:latest
    ports:
      - "80"
Isolated Deployments

When Isolated Deployments is enabled, Dokploy will:

  1. Add a prefix to all your defined volumes and networks
  2. Create a network based on your service's appName and associate it with each service in your compose file
  3. Connect the Traefik load balancer to this isolated network, maintaining service isolation while ensuring proper routing

When using this feature, you don't need to explicitly define dokploy-network in your networks section, as isolation is handled automatically.

Randomize Compose

Dokploy offers functionality to randomize various compose properties:

  1. Volumes
  2. Networks
  3. Services
  4. Configs
  5. Secrets

You can specify a custom prefix that will be used as a suffix for each compose property.

Note: If both Isolated Deployments and Randomize Compose are enabled, the Isolated Deployments configuration takes precedence.

On this page