diff --git a/README.md b/README.md index 4cb3f10..2743631 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Then why this package uses Docker? It's because the developers of the core app do not support simple installation. And packaging without documentaion is time consuming. -[![Integration level](https://dash.yunohost.org/integration/Lemmy.svg)](https://dash.yunohost.org/appci/app/lemmy) ![](https://ci-apps.yunohost.org/ci/badges/lemmy.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/lemmy.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/lemmy.svg)](https://dash.yunohost.org/appci/app/lemmy) ![](https://ci-apps.yunohost.org/ci/badges/lemmy.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/lemmy.maintain.svg) [![Install Lemmy with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=lemmy) diff --git a/scripts/install b/scripts/install index 91820db..a21dac2 100755 --- a/scripts/install +++ b/scripts/install @@ -148,6 +148,7 @@ ynh_systemd_action --service_name=nginx --action=reload #================================================= # Run Lemmy through Docker #================================================= +chown -R $(whoami) /usr/local/bin cd "$final_path" && docker-compose up -d diff --git a/scripts/remove b/scripts/remove index 9dd5b1b..d8471bb 100755 --- a/scripts/remove +++ b/scripts/remove @@ -52,4 +52,4 @@ ynh_remove_nginx_config # END OF SCRIPT #================================================= -ynh_script_progression --message="Removal of $app completed" --time --last +ynh_script_progression --message="Removal of $app completed" --last diff --git a/scripts/upgrade b/scripts/upgrade index 5efe36f..a270797 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -69,7 +69,7 @@ fi #================================================= # NGINX CONFIGURATION #================================================= -ynh_script_progression --message="Upgrading NGINX web server configuration..." --time --weight=1 +ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1 # Create a dedicated NGINX config ynh_add_nginx_config 'port_lemmy port_ui port_pictrs port_iframely' @@ -77,7 +77,7 @@ ynh_add_nginx_config 'port_lemmy port_ui port_pictrs port_iframely' #================================================= # UPGRADE DEPENDENCIES #================================================= -ynh_script_progression --message="Upgrading dependencies..." --time --weight=1 +ynh_script_progression --message="Upgrading dependencies..." --weight=1 #ynh_install_app_dependencies $pkg_dependencies @@ -121,6 +121,7 @@ ynh_systemd_action --service_name=nginx --action=reload #================================================= # Run Lemmy through Docker #================================================= +chown -R $(whoami) /usr/local/bin cd "$final_path" && docker-compose up -d #=================================================