Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sonodar/docker-build-jredmine
Docker image: debian wheezy, oracle-jdk8, jruby, for redmine.war build.
https://github.com/sonodar/docker-build-jredmine
Last synced: 28 days ago
JSON representation
Docker image: debian wheezy, oracle-jdk8, jruby, for redmine.war build.
- Host: GitHub
- URL: https://github.com/sonodar/docker-build-jredmine
- Owner: sonodar
- Created: 2015-01-14T11:16:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-20T08:06:00.000Z (almost 10 years ago)
- Last Synced: 2024-10-25T10:40:06.044Z (3 months ago)
- Language: Shell
- Size: 133 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-build-jredmine
Docker image: debian wheezy, oracle-jdk8, jruby, for redmine.war build.
## Example
```shell
# Set container directory path
ADDITIONAL_PLUGIN_DIR=/opt/redmine/additional_plugins
ADDITIONAL_THEME_DIR=/opt/redmine/additional_themes
BUILD_DIR=/buildsudo docker run -it --rm \
-v `pwd`/plugins:$ADDITIONAL_PLUGIN_DIR \
-v `pwd`/themes:$ADDITIONAL_THEME_DIR \
-v `pwd`/build:$BUILD_DIR \
-e ADDITIONAL_PLUGIN_DIR=$ADDITIONAL_PLUGIN_DIR \
-e ADDITIONAL_THEME_DIR=$ADDITIONAL_THEME_DIR \
-e BUILD_DIR=$BUILD_DIR \
-e REDMINE_LANG=ja \
sonodar/build-jredmine
```