diff --git a/README.md b/README.md
index f6e93ef2eb023e9c81327f21d21ba3f8805dbb06..a6813bae4039a1240c76b25c417f4997c999318b 100644
--- a/README.md
+++ b/README.md
@@ -106,7 +106,8 @@ Open in a browser the url displayed at the end of the script output to finalize
 
 [Drive](https://github.com/cozy/cozy-drive) and [Photo](https://github.com/cozy/cozy-photos) are installed by default by the [create-instance.sh](create-instance.sh) script. Other applications like [banks](https://github.com/cozy/cozy-banks) or [contacts](https://github.com/cozy/cozy-contacts) are also available.
 
-To install an application, you can run the [application.sh](application.sh) script :
+You can go to the store application (store.yourinstance.youdomain.tld) to manage you applications.
+To manually install an application, you can run the [application.sh](application.sh) script :
 
 ```
 sudo ./application.sh <instance name> <application>
diff --git a/cozystack/cozy.yaml b/cozystack/cozy.yaml
index 0c934e73cbafdfa408a15d27d4797cf4be25344a..09373cfe1eac49ebec4953d5fe44228bb945acc8 100644
--- a/cozystack/cozy.yaml
+++ b/cozystack/cozy.yaml
@@ -196,8 +196,8 @@ auto_updates:
   schedule: "@cron 0 0 0 * * *"
 
 # Registries used for applications and konnectors
-registries:
-  - https://apps-registry.cozy.io/
+# registries:
+#  - https://apps-registry.cozy.io/
 
 notifications:
   # Activate development APIs (iOS only)
diff --git a/create-instance.sh b/create-instance.sh
index eea2549674db4844278da3a4deb22aea4d834308..19e944f2842556f8a03cc28ddafbd99eba8cc99f 100755
--- a/create-instance.sh
+++ b/create-instance.sh
@@ -12,7 +12,7 @@ TMPFILE=$(mktemp /tmp/cozyXXX)
 
 echo "Creating instance ${INSTANCE_ID}.${COZY_TLD} ..."
 
-docker-compose exec cozy ./cozy instances add --host 0.0.0.0 --apps drive,photos,collect,settings,onboarding "${INSTANCE_ID}.${COZY_TLD}" | tee "${TMPFILE}"
+docker-compose exec cozy ./cozy instances add --host 0.0.0.0 --apps drive,photos,collect,settings,onboarding,store "${INSTANCE_ID}.${COZY_TLD}" | tee "${TMPFILE}"
 
 # TODO find a better way to detect if there was an error
 TOKEN=""