An open API service indexing awesome lists of open source software.

https://github.com/dionysio/dokku-nextcloud

Repo which simplified Nextcloud setup on a Dokku server
https://github.com/dionysio/dokku-nextcloud

docker dokku nextcloud owncloud self-hosted

Last synced: about 2 months ago
JSON representation

Repo which simplified Nextcloud setup on a Dokku server

Awesome Lists containing this project

README

        

# Run Nextcloud as a Dokku app

1. Install dokku plugins:
- [dokku-psql-single-container](https://github.com/Flink/dokku-psql-single-container)
- [dokku-require](https://github.com/crisward/dokku-require/)
2. Clone/fork this repo
3. Create `nextcloud` app
4. Set `NEXTCLOUD_ADMIN_USER` and `NEXTCLOUD_ADMIN_PASSWORD` env variables
5. Push to dokku

In summary:

```bash
dokku plugin:install https://github.com/Flink/dokku-psql-single-container
dokku plugin:install https://github.com/crisward/dokku-require/
dokku apps:create nextcloud
dokku config:set nextcloud NEXTCLOUD_ADMIN_USER= NEXTCLOUD_ADMIN_PASSWORD=

git push dokku master
```