# Migrate from crowi-plus-docker-compose
WARNING
DO NOT EDIT docker-compose.yml
. Only edit Dockerfile
.
# Dockerfile
- Edit the line of
FROM
andENV APP_DIR
.Before
FROM weseek/crowi-plus:2 ENV APP_DIR /opt/crowi-plus
After
FROM weseek/growi:3 ENV APP_DIR /opt/growi
- Because GROWI includes lsx plugin and pukiwiki-like-linker plugin in GROWI official image by default, comment out or delete the lines below.
Before
# install plugins if necessary RUN echo "install plugins" \ # && npm install --save \ # crowi-plugin-lsx \ # crowi-plugin-pukiwiki-like-linker \ && echo "done." # you must rebuild if install plugin at least one # RUN npm run build:prod
After
# install plugins if necessary # ;; # ;; NOTE: In GROWI v3 and later, # ;; 2 of official plugins (growi-plugin-lsx and growi-plugin-pukiwiki-like-linker) # ;; are now included in the 'weseek/growi' image. # ;; Therefore you will not need following lines except when you install third-party plugins. # ;; #RUN echo "install plugins" \ # && yarn add \ # growi-plugin-XXX \ # growi-plugin-YYY \ # && echo "done." # you must rebuild if install plugin at least one #RUN npm run build:prod
# Start
docker-compose up