Compare commits

...

36 Commits

Author SHA1 Message Date
Oliver Günther 0f967d8f61
Release opf/openproject v6.1.5 8 years ago
Oliver Günther 9764152d4f
Merge branch 'release/6.1' into stable/6 8 years ago
Oliver Günther 159e3dea02
Release opf/openproject v6.1.4 8 years ago
Oliver Günther 14df94f566
Merge branch 'release/6.1' into stable/6 8 years ago
Oliver Günther 6833dc0b5f
Update frontend plugin section 8 years ago
Markus Kahl 23cf512144
updated generated plugin and docs 8 years ago
Jens Ulferts 86401b8f7d
Release opf/openproject v6.1.3 8 years ago
Jens Ulferts bdb1056724
Merge branch 'release/6.1' into stable/6 8 years ago
Markus Kahl cf117c5e59 Release opf/openproject v6.1.2 8 years ago
Markus Kahl 32c6634a14 Merge branch 'release/6.1' into stable/6 8 years ago
Oliver Günther 504d6508b7
Extend documentation of mail handler 8 years ago
Oliver Günther f1bbf3d06c
Release opf/openproject v6.1.1 8 years ago
Oliver Günther 75846eac60
Merge branch 'release/6.1' into stable/6 8 years ago
Markus Kahl f1850b2eba use stable/6 tag for docker image 8 years ago
Oliver Günther 8553ad8076
Remove CentOS 6.x 8 years ago
Oliver Günther c373ca520a
Release opf/openproject v6.1.0 8 years ago
Oliver Günther 461d99f513
Merge branch 'release/6.1' into stable/6 8 years ago
Markus Kahl 249b0b6eab use common base class for jobs 8 years ago
Oliver Günther 77223a5740
Release opf/openproject v6.0.5 8 years ago
Oliver Günther 6f8678bf66
Merge branch 'release/6.0' into stable/6 8 years ago
Oliver Günther af179cf667
Release opf/openproject v6.0.4 8 years ago
Oliver Günther eb89601e9f
Merge branch 'release/6.0' into stable/6 8 years ago
Oliver Günther 361494027a
Release opf/openproject v6.0.3 8 years ago
Oliver Günther 648df06486
Merge branch 'release/6.0' into stable/6 8 years ago
Oliver Günther 8cb049db48 Release opf/openproject v6.0.2 8 years ago
Oliver Günther 5fb8861e18 Merge branch 'release/6.0' into stable/6 8 years ago
Oliver Günther 2d3155e355 Bump release version 8 years ago
Oliver Günther b71034d649 Release opf/openproject v6.0.1 8 years ago
Oliver Günther 316df4c30b Merge branch 'release/6.0' into stable/6 8 years ago
Oliver Günther 2c6fd9b88f Add packager configuration for Ubuntu 16.04. 8 years ago
Oliver Günther 28f775e79b Extend Upgrade guide with note to reconfigure 8 years ago
Oliver Günther 27bf567b9b Update references to stable branch 8 years ago
Oliver Günther 0fe68b83e1 Extend packaged installation guide for postgresql 8 years ago
Oliver Günther 6ffd4ba9f9 Merge branch 'release/6.0' into stable/6 8 years ago
Oliver Günther aff7aba466 Update installation guides 8 years ago
Oliver Günther e348fa785d Move openproject-translations to stable/6 8 years ago
  1. 2
      Gemfile
  2. 4
      Gemfile.lock
  3. 9
      doc/operation_guides/docker/installation-guide.md

@ -261,7 +261,7 @@ platforms :jruby do
end
group :opf_plugins do
gem 'openproject-translations', git: 'https://github.com/opf/openproject-translations.git', branch: 'release/6.1'
gem 'openproject-translations', git: 'https://github.com/opf/openproject-translations.git', branch: 'stable/6'
end
# TODO: Make this group :optional when bundler v10.x

@ -60,8 +60,8 @@ GIT
GIT
remote: https://github.com/opf/openproject-translations.git
revision: 3490866ec6a7ab50a8dacb07e014984c6fecda14
branch: release/6.1
revision: 7d52fa7fae2fac4ccdb24b261a600417193f7b15
branch: stable/6
specs:
openproject-translations (6.1.5)
crowdin-api (~> 0.4.1)

@ -19,7 +19,7 @@ the options that the package-based or manual installation provides.
The fastest way to get an OpenProject instance up and running is to run the
following command:
docker run -it -p 8080:80 -e SECRET_KEY_BASE=secret openproject/community:5.0
docker run -it -p 8080:80 -e SECRET_KEY_BASE=secret openproject/community:6
This will take a bit of time the first time you launch it, but after a few
minutes you should see a success message indicating the default administration
@ -35,7 +35,7 @@ the logs to your terminal, which helps with debugging if anything goes wrong.
For normal usage you probably want to start it in the background, which can be
achieved with the `-d` flag:
docker run -d -p 8080:80 -e SECRET_KEY_BASE=secret openproject/community:5.0
docker run -d -p 8080:80 -e SECRET_KEY_BASE=secret openproject/community:6
## Recommended usage
@ -58,7 +58,7 @@ those directories mounted:
-v /var/lib/openproject/pgdata:/var/lib/postgresql/9.4/main \
-v /var/lib/openproject/logs:/var/log/supervisor \
-v /var/lib/openproject/static:/var/db/openproject \
openproject/community:5.0
openproject/community:6
Since we named the container, you can now stop it by running:
@ -143,8 +143,7 @@ Yes. You can simply pass a custom `DATABASE_URL` environment variable on the
command-line, which could point to an external database. You can even choose to
use MySQL instead of PostgreSQL if you wish. Here is how you would do it:
docker run -d ... -e DATABASE_URL=mysql2://user:pass@host:port/dbname openproject/community:5.0
docker run -d ... -e DATABASE_URL=mysql2://user:pass@host:port/dbname openproject/community:6
The container will make sure that the database gets the migrations and demo
data as well.

Loading…
Cancel
Save