OpenProject is a web-based project management software.
1.3K
OpenProject is a web-based project management software. Its key features are:
More information and screenshots can be found on our website.
If you want to build the docker image and test it for development, just type the following command:
docker run --name db -p 5432:5432 -e POSTGRES_USER=openproject -e POSTGRES_PASSWORD=openproject -e POSTGRES_DB=openproject_development -e DB_HOST=0.0.0.0 postgres:10-alpine
docker run --link db -p 3000:3000 -d openproject-alpine:development
If you want to build the complete system and run it on production, just type the following command:
docker-compose -f docker-compose-development.yml up -d --build
If you want to build the docker image and test it for development, just type the following command:
docker run --name db -p 5432:5432 -e POSTGRES_USER=openproject -e POSTGRES_PASSWORD=openproject -e POSTGRES_DB=openproject_staging -e DB_HOST=0.0.0.0 postgres:10-alpine
docker run --link db -p 3000:3000 -d openproject-alpine:staging
If you want to build the complete system and run it on production, just type the following command:
docker-compose -f docker-compose-staging.yml up -d --build
You can test your production image executing the following commands:
docker run --name db -p 5432:5432 -e POSTGRES_USER=openproject -e POSTGRES_PASSWORD=openproject -e POSTGRES_DB=openproject -e DB_HOST=0.0.0.0 postgres:10-alpine
docker run --link db -p 3000:3000 -d openproject-alpine:production
If you want to build the complete system and run it on production, just type the following command:
docker-compose -f docker-compose-production.yml up -d
This code is released into the public domain by Guillem Hernández Sola under
This README file was originally written by Guillem Hernández Sola and is likewise released into the public domain.
Please contact Guillem Hernández Sola for further details.
Content type
Image
Digest
Size
709.1 MB
Last updated
about 9 years ago
docker pull itnove/openproject-alpine