Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions 3.4/alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ if [ -n "$isLikelyRedmine" ]; then
rake redmine:plugins:migrate
fi

if [ "$1" != 'rake' -a -n "$REDMINE_PLUGINS_ASSETS" ]; then
rake redmine:plugins:assets
fi

# remove PID file to enable restarting the container
rm -f tmp/pids/server.pid

Expand Down
4 changes: 4 additions & 0 deletions 3.4/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ if [ -n "$isLikelyRedmine" ]; then
rake redmine:plugins:migrate
fi

if [ "$1" != 'rake' -a -n "$REDMINE_PLUGINS_ASSETS" ]; then
rake redmine:plugins:assets
fi

# remove PID file to enable restarting the container
rm -f tmp/pids/server.pid

Expand Down
4 changes: 4 additions & 0 deletions 4.0/alpine/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ if [ -n "$isLikelyRedmine" ]; then
rake redmine:plugins:migrate
fi

if [ "$1" != 'rake' -a -n "$REDMINE_PLUGINS_ASSETS" ]; then
rake redmine:plugins:assets
fi

# remove PID file to enable restarting the container
rm -f tmp/pids/server.pid

Expand Down
4 changes: 4 additions & 0 deletions 4.0/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ if [ -n "$isLikelyRedmine" ]; then
rake redmine:plugins:migrate
fi

if [ "$1" != 'rake' -a -n "$REDMINE_PLUGINS_ASSETS" ]; then
rake redmine:plugins:assets
fi

# remove PID file to enable restarting the container
rm -f tmp/pids/server.pid

Expand Down
4 changes: 4 additions & 0 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ if [ -n "$isLikelyRedmine" ]; then
rake redmine:plugins:migrate
fi

if [ "$1" != 'rake' -a -n "$REDMINE_PLUGINS_ASSETS" ]; then
rake redmine:plugins:assets
fi

# remove PID file to enable restarting the container
rm -f tmp/pids/server.pid

Expand Down