Top Menu

Jump to content
Home
    Modules
      • Projects
      • Activity
      • Work packages
      • Gantt charts
      • Calendars
      • Team planners
      • Boards
      • News
    • Getting started
    • Introduction video
      Welcome to OpenProject Community
      Get a quick overview of project management and team collaboration with OpenProject. You can restart this video from the help menu.

    • Help and support
    • Upgrade to Enterprise edition
    • User guides
    • Videos
    • Shortcuts
    • Community forum
    • Enterprise support

    • Additional resources
    • Data privacy and security policy
    • Digital accessibility (DE)
    • OpenProject website
    • Security alerts / Newsletter
    • OpenProject blog
    • Release notes
    • Report a bug
    • Development roadmap
    • Add and edit translations
    • API documentation
  • Sign in
      Forgot your password?

      or sign in with your existing account

      Google

Side Menu

  • Overview
  • Activity
    Activity
  • Roadmap
  • Work packages
    Work packages
  • Gantt charts
    Gantt charts
  • Calendars
    Calendars
  • Team planners
    Team planners
  • Boards
    Boards
  • News
  • Forums

Content

Support Installation & Updates
  1. OpenProject
  2. Forums
  3. Support Installation & Updates
  4. Openproject 3 in Docker - Installation instructions

Openproject 3 in Docker - Installation instructions

Added by Brendan Dunn over 10 years ago

Hi

I just created an Openproject 3 image on Docker (to test how it works)
I used ubuntu 14.04.

Install docker on Ubuntu 14.04

This is very straight forward

sudo apt-get update
sudo apt-get upgrade
sudo apt-get -y install docker.io
sudo ln -sf /usr/bin/docker.io /usr/local/bin/docker
sudo sed -i '$acomplete -F _docker docker' /etc/bash_completion.d/docker.io
sudo update-rc.d docker.io defaults

h1.Download the Openproject Image
type

sudo docker pull beadone/openproject

This will take a while as the image is about 2 gig
my installation output was

sudo docker pull beadone/openproject
Pulling repository beadone/openproject
7bd7707b6989: Download complete 
511136ea3c5a: Download complete 
97fd97495e49: Download complete 
2dcbbf65536c: Download complete 
6a459d727ebb: Download complete 
8f321fc43180: Download complete 
03db2b23cf03: Download complete 
9cbaf023786c: Download complete 
8e14c301161c: Download complete 

Connect to the image

now connect and run the image

docker run -i -t beadone/openproject /bin/bash

Your shell prompt will change to root

Now start apache and postgresql

service postgresql start
service apache2 start

to find out what the ip address is type

ifconfig

You can now connect to an empty Openproject installation using the usual admin/admin login
I also found another recent Docker image of Op here
https://registry.hub.docker.com/u/abevoelker/openproject/
but it was more complex as he had linked the Openproject container to a postgresql container which as
too complex for my noob (first day) experience of docker.

I have attached the commands I used to create the image so you can see the config

Cheers
Brendan

cheers
Brendan


Replies (1)

RE: Openproject 3 in Docker - Installation instructions - Added by Brendan Dunn over 10 years ago

ooppss
config file now attached

  • (1 - 1/1)
Loading...