Sign inSign up

itnove/openproject-alpine

By itnove

Updated about 9 years ago

OpenProject is a web-based project management software.

Image
1

1.3K

itnove/openproject-alpine repository overview

OpenProject Alpine

OpenProject is a web-based project management software. Its key features are:

More information and screenshots can be found on our website.

Development

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

Staging

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

Production

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

License and Support

Apache 2.0 License

License

This code is released into the public domain by Guillem Hernández Sola under License

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.

Tag summary

Content type

Image

Digest

Size

709.1 MB

Last updated

about 9 years ago

docker pull itnove/openproject-alpine