📦 The official Nextcloud installation method. Provides easy deployment and maintenance with most features included in this one Nextcloud instance. https://nextcloud.com/blog/how-to-install-the-nextcloud-all-in-one-on-linux/
Find a file
szaimen 1ff0576ee5 Fix the credentials page for port 8080 and improve the readme
Signed-off-by: szaimen <szaimen@e.mail.de>
2021-12-01 01:05:05 +01:00
app add the app into the container and upgrade to 23 2021-11-30 12:50:08 +01:00
Containers add sendnotifications and update checker cron 2021-11-30 13:51:54 +01:00
php Fix the credentials page for port 8080 and improve the readme 2021-12-01 01:05:05 +01:00
.gitignore Initial import 2021-11-30 11:20:42 +01:00
CODEOWNERS Create CODEOWNERS 2021-11-30 11:50:18 +01:00
develop.md Initial import 2021-11-30 11:20:42 +01:00
readme.md Fix the credentials page for port 8080 and improve the readme 2021-12-01 01:05:05 +01:00

Nextcloud All In One Beta

This is beta software and not production ready. But feel free to use it at your own risk! We expect there to be rough edges and potentially serious bugs.

Nextcloud AIO stands for Nextcloud All In One and provides easy deployment and maintenance with most features included in this one Nextcloud instance.

Included are:

  • Nextcloud
  • Nextcloud Office
  • High performance backend for Nextcloud Files
  • High performance backend for Nextcloud Talk
  • Backup solution (based on BorgBackup)

Found a bug? Please file an issue at https://github.com/nextcloud/all-in-one

How to use this?

  1. Install Docker on your Linux installations using:
curl -fsSL get.docker.com | sudo sh
  1. Run the following command:
sudo docker run -it \
--name nextcloud-aio-mastercontainer \
--restart always \
-p 80:80 \
-p 8080:8080 \
-p 8443:8443 \
--volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config \
--volume /var/run/docker.sock:/var/run/docker.sock:ro \
nextcloud/all-in-one:latest
  1. After the initial startup, you should be able to open the Nextcloud AIO Interface now on port 8080 of this server.
    E.g. https://internal.ip.of.this.server:8080
    If your server has port 80 and 8443 open and you point a domain to your server, you can get a valid certificate automatially by opening the Nextcloud AIO Interface via:
    https://your-domain-that-points-to-this-server.tld:8443
  2. You should now see your login credentials. If not, please have a look at the FAQ section below.

Explanation of used ports:

  • 80: redirects to Nextcloud (HTTP) (is used for getting the certificate via ACME http-challenge for mastercontainer)
  • 8080: Master Container Interface with self-signed certificate (HTTPS) (works always, also if only access via IP-address is possible, e.g. https://internal.ip.address:8080/)
  • 8443: Master Container Interface with valid automatic certificate via Let's Encrypt! (HTTPS) (Only works if you access the container via a public domain, e.g. https://public.domain.com:8443/ and not via IP-address.)

FAQ

  • Is running Nextcloud AIO via Docker Compose supported?
    Unfortunately no, as you most likely run into many issues when trying to do so.
  • I don't see the initial screen with my login credentials. What to do?
    Please try to remove the mastercontainer first by running:
    sudo docker stop nextcloud-aio-mastercontainer; sudo docker rm nextcloud-aio-mastercontainer; sudo docker rm nextcloud_aio_mastercontainer
    
    Afterwards, install it again by running the above mentioned command again.