Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit 90cb8002 authored by Nivesh Krishna's avatar Nivesh Krishna
Browse files

add user_migration app

parent 326d163d
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
.idea
files
ecloud_dev_example/volumes
+10 −0
Original line number Diff line number Diff line
@@ -12,6 +12,7 @@ ARG GOOGLE_INTEGRATION_VERSION="1.0.9"
ARG DASHBOARD_JOB_ID="570430"
ARG SNAPPY_VERSION="2.27.2"
ARG SNAPPY_THEME_VERSION="1.2.7"
ARG USER_MIGRATION_VERSION="3.0.0"

RUN sed -i 's/25,0,6,1/25,0,6,2/' ${BASE_DIR}/version.php
COPY custom_entrypoint.sh /
@@ -80,6 +81,15 @@ RUN curl -fsSL -o snappymail.tar.gz \
    tar -xf snappymail.tar.gz -C ${BASE_DIR}/custom_apps/ && \
    rm snappymail.tar.gz;

RUN curl -fsSL -o user_migration.tar.gz \
    "https://github.com/nextcloud-releases/user_migration/releases/download/v${USER_MIGRATION_VERSION}/user_migration-v${USER_MIGRATION_VERSION}.tar.gz" && \
    tar -xf user_migration.tar.gz -C ${BASE_DIR}/custom_apps/ && \
    chown -R www-data:www-data ${BASE_DIR}/custom_apps/user_migration && \
    rm user_migration.tar.gz;

# Do not create duplicate section for user_migration
RUN sed -i 's/return Application::APP_ID;/return "migration";/' ${BASE_DIR}/custom_apps/user_migration/lib/Settings/Personal/Settings.php

# Fix snappymail icon
RUN sed -i 's/logo-white-64x64.png/app.svg/' ${BASE_DIR}/custom_apps/snappymail/appinfo/info.xml

+1 −1
Original line number Diff line number Diff line
@@ -60,4 +60,4 @@ We suggest you use our [ecloud-selfhosting](https://gitlab.e.foundation/e/infra/

## Contributing

Anyone can fork a project on our GitLab instance, but to prevent abuse it's disabled by default. Get in touch with us [by e-mail](mailto:join@e.email) or through our support channels and we will let you create a fork and submit MRs.
Anyone can fork a project on our GitLab instance, but to prevent abuse it's disabled by default. Get in touch with us [by e-mail](mailto:dev@e.email) or through our support channels and we will let you create a fork and submit MRs.