mirror of
https://github.com/makeplane/plane.git
synced 2026-02-25 04:35:21 +01:00
External Deployment
Portainer
Download the required assets as below
docker-compose.ymlfrom ⇒ https://prime.plane.so/deployment/assets/v1.8.0/docker-compose.ymlvariables.envfrom ⇒ https://prime.plane.so/deployment/assets/v1.8.0/variables.env
Edit the variables.env in your favourite editor for
DOMAIN_NAME: The domain name of your applicationAPP_RELEASE_VERSION: The version of the application you want to deploySITE_ADDRESS: The FQDN of your applicationCERT_EMAIL: The email address of your SSL certificate (only if you want to generate SSL certificate)MACHINE_SIGNATURE: A unique identifier for your machine ( this can be generated in terminal using commandopenssl rand -hex 16oruuidgen)
With above mentioned changes, you are ready to deploy Plane. Create a new stack in Portainer and use the downloaded file to setup Plane (Commercial)
Coolify
Download the required assets as below
coolify-compose.ymlfrom ⇒ https://prime.plane.so/deployment/assets/v1.8.0/coolify-compose.yml
Coolify allows you to directly deploy applications using Docker Compose. To deploy Plane on Coolify:
- Add a new service in Coolify.
- Select
Docker Compose Emptyas the deployment method. - Upload the above downloaded
coolify-compose.ymlfile - Configure environment variables using their UI.
- Deploy the application.
Swarm
To deploy Plane using Docker Swarm:
Download the required assets as below
docker-compose.ymlfrom ⇒ https://prime.plane.so/deployment/assets/v1.8.0/docker-compose.ymlvariables.envfrom ⇒ https://prime.plane.so/deployment/assets/v1.8.0/variables.env
Edit the variables.env in your favourite editor for
DOMAIN_NAME: The domain name of your applicationAPP_RELEASE_VERSION: The version of the application you want to deploySITE_ADDRESS: The FQDN of your applicationCERT_EMAIL: The email address of your SSL certificate (only if you want to generate SSL certificate)MACHINE_SIGNATURE: A unique identifier for your machine ( this can be generated in terminal using commandopenssl rand -hex 16oruuidgen)
-
Load your environment variables before running the deployment:
set -o allexport; source <path-to variables.env>; set +o allexport; -
Deploy the stack:
docker stack deploy -c deploy/cli-install/docker-caddy.yml plane
This will deploy the application as a Swarm stack