/
Deploying Planning Poker locally via Docker
Deploying Planning Poker locally via Docker
This article assumes that you have the following:
- Basic knowledge of using Docker
- docker-compose installed on your system
Login in Docker against Planning Poker Docker Registry and enter your credentials
docker login docker.lizzybrain.com
Copy the following file and name it docker-compose.yml
Feel free to change the ports mapping if neededdocker-compose.ymlversion: "3" services: mongo: container_name: mongo image: mongo:3.6.9 volumes: ["./_app_data:/data/db"] ports: ["127.0.0.1:27017:27017"] restart: always app: container_name: jpp image: docker.lizzybrain.com/jpp:v2 restart: always ports: ["3005:3005"] links: [mongo] depends_on: [mongo]
Run docker-compose (optionally pass -d flag to run it as service)
docker-compose up -d
- Make sure it works by opening your machine URL/IP in the browser, e.g.:
http://localhost:3005/atlassian-connect.json
- localhost will be your server IP
- 3005 will be your server port (leave empty if 80)
- /atlassian-connect.json is a path to validate the deployment
If installed successfully, you'll see a JSON response. - Navigate to Planning Poker Configuration page in Manage Apps section of your Jira
- Enter the URL or IP of the machine where you run the App
- Enjoy!
, multiple selections available,
Related content
Planning Poker - Server to Cloud migration
Planning Poker - Server to Cloud migration
More like this
Deploying Agile Retrospectives locally via Docker
Deploying Agile Retrospectives locally via Docker
More like this
Hybrid Planning Poker Server EOL - March 31st, 2022
Hybrid Planning Poker Server EOL - March 31st, 2022
More like this
When Planning Poker is blocked by your ISP
When Planning Poker is blocked by your ISP
More like this
Game start and configuration
Game start and configuration
More like this
Game details
Game details
More like this