Skip to content
Snippets Groups Projects
Unverified Commit c5d52abc authored by Vincent Sellier's avatar Vincent Sellier
Browse files

Use default registry and install store application by default

parent a9495cd3
Branches
Tags docker_v2018M2S5_2
No related merge requests found
...@@ -106,7 +106,8 @@ Open in a browser the url displayed at the end of the script output to finalize ...@@ -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. [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> sudo ./application.sh <instance name> <application>
......
...@@ -196,8 +196,8 @@ auto_updates: ...@@ -196,8 +196,8 @@ auto_updates:
schedule: "@cron 0 0 0 * * *" schedule: "@cron 0 0 0 * * *"
# Registries used for applications and konnectors # Registries used for applications and konnectors
registries: # registries:
- https://apps-registry.cozy.io/ # - https://apps-registry.cozy.io/
notifications: notifications:
# Activate development APIs (iOS only) # Activate development APIs (iOS only)
......
...@@ -12,7 +12,7 @@ TMPFILE=$(mktemp /tmp/cozyXXX) ...@@ -12,7 +12,7 @@ TMPFILE=$(mktemp /tmp/cozyXXX)
echo "Creating instance ${INSTANCE_ID}.${COZY_TLD} ..." 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 # TODO find a better way to detect if there was an error
TOKEN="" TOKEN=""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment