0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

alias メモ

Last updated at Posted at 2022-05-02

##docker redmine
#接続
alias rema='docker exec -it redmine bash'
alias redb='docker exec -it redmine-db bash'

#再起動
alias rere='cd /usr/local/redmine && docker-compose down && docker-compose up -d'
#データベースの更新(redmine)
alias redb1='bundle exec rake db:migrate RAILS_ENV=production'
#データベースの更新(プラグイン)
alias redb2='bundle exec rake redmine:plugins:migrate RAILS_ENV=production'
#キャッシュのクリア
alias redb3='bundle exec rake tmp:cache:clear RAILS_ENV=production'

##docker redmine plugin
alias kase='vim /usr/local/redmine/data/plugins/kanban/app/models/constants.rb'

#redmine plugin削除
cd /usr/local/redmine/data/plugins/
rm -fr redmine_editor_preview_tab

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?