Production Version
Docker Compose
- Make sure you have Docker and Docker Compose installed and operational.
Steps to Install Planka
-
Create a Folder
mkdir /opt/planka
-
Download the
docker-compose.yml
curl -L https://raw.githubusercontent.com/plankanban/planka/master/docker-compose.yml -o /opt/planka/docker-compose.yml
-
Generate a Secret Key
openssl rand -hex 64
-
Enter the Folder and Edit
docker-compose.yml
Paste your generated SECRET_KEY, change the BASE_URL, and set up your default admin user by uncommenting the lines starting with DEFAULT_ADMIN_.
cd /opt/planka
nano docker-compose.yml -
Pull Images and Start Services
docker compose up -d
Access Planka
Once the services are running, browse to BASE_URL and log in as DEFAULT_ADMIN_EMAIL with the password DEFAULT_ADMIN_PASSWORD.
Additional Info
If you're not using Docker volumes and prefer to directly link folders (bind mounts), you'll need to adjust the permissions of those folders. This ensures that the default user running the Node.js application (usually called "node" with a user ID of 1000) can make changes to the files and folders inside. Run the following command to adjust the permissions:
chown -R 1000:1000 /mnt/path