惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
小众软件
小众软件
The Cloudflare Blog
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans
Last Week in AI
Last Week in AI
月光博客
月光博客
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
GbyAI
GbyAI
B
Blog
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗

Nextcloud

Nextcloud Hub 26 Summer: Autonomy for Teams, Office on desktop, a fresh take on Photos - Nextcloud Collabora: Landlock adds a third, tougher sandbox tier - Nextcloud September maintenance updates before Nextcloud Hub 26 Summer, EOL for Nextcloud Hub 26 Autumn - Nextcloud Workshops at the Nextcloud Community Conference 2026 - Nextcloud How to set up UnifiedPush on Android for Nextcloud Talk - Nextcloud Anna Larch on community management and DevRel in the age of AI PRs - Nextcloud Nextcloud Hub: The European alternative to Microsoft 365 and Google Workspace - Nextcloud Nextcloud earns ANSSI CSPN and BSI IT-Grundschutz certifications - Nextcloud Academy of Civic Organizations builds a secure workspace | Nextcloud August maintenance updates for Nextcloud Hub - Nextcloud Join the Nextcloud development sprints: a week of hands-on collaboration - Nextcloud How to volunteer at the Nextcloud Community Conference 2026 - Nextcloud Nextcloud passes DPIA by SURF & Privacy Company - Nextcloud Prof. Dr. Johanna Pirker on AI, open source, and sovereignty - Nextcloud Do I belong at the Nextcloud Community Conference 2026? - Nextcloud July maintenance updates: Nextcloud Hub 25 Autumn, 26 Winter & 26 Spring - Nextcloud Nextcloud Office: deciding between Euro-Office, Collabora, and Thinkfree Office - Nextcloud Nextcloud Community Awards 2026 Building a sovereign AI stack: What it actually takes - Nextcloud Nextcloud ISV Partner Program: connecting app developers with enterprises How to install Euro-Office in Nextcloud June maintenance updates for Nextcloud Hub 25 Autumn, 26 Winter & 26 Spring - Nextcloud Nextcloud Summit 2026: Celebrating the people and companies who made it happen - Nextcloud Nextcloud Deck: the kanban board & Gantt chart app for teams - Nextcloud Bringing digital sovereignty to university IT: Interview with Michael Redinger, University of Innsbruck - Nextcloud Your Guide to Nextcloud All-in-One on Windows 10 & 11 - Nextcloud How to install the Nextcloud All-in-One on Linux - Nextcloud Nextcloud Summit 2026: Digital sovereignty comes of age Nextcloud Awards 2026: celebrating ISKA Nürnberg and FREIRAD Nextcloud Hub 26 Spring: Built together, designed for the future
Nextcloud AIO introduces automatic domain and DNS setup -...
Kevin Herschbach · 2026-07-03 · via Nextcloud

Nextcloud - Nextcloud Hub 26 Spring: Built together, designed for the future

Nextcloud Hub 26 Spring: Built together, designed for the future

Nextcloud Hub 26 Spring is here. Check the release blog post and explore all new features!

Read more

Four years ago, we introduced Nextcloud All-in-One (AIO) as a straightforward way to set up a complete Nextcloud installation using Docker.

Now, the Nextcloud AIO repository has reached 10,000 stars on GitHub! A big thank you to the community and a special shout-out to user OverDodo for providing that last star to cross the threshold 🌟

To celebrate, we’ve released an update to Nextcloud AIO that includes a convenient new feature: automatic domain acquisition and DNS setup via integrated deSEC. More on that below.

If you’re not yet familiar with how Nextcloud AIO works, here’s a quick overview.

How to use Docker to install Nextcloud All-in-One

Nextcloud AIO bundles everything you need into a single, easy-to-manage package and uses a Docker-based installation process to set up your Nextcloud.

Everything starts with the master container, which you launch with a single docker run command. It acts as the orchestrator for all other containers and provides a web interface that you use to configure and manage the entire stack.

During the initial installation, you set up DDNS, forward the necessary ports, and choose which optional containers you want to install. These include Nextcloud Office, Nextcloud Talk, backup and antivirus tools, and more. Nextcloud AIO will then download and start all containers automatically and notify you when your Nextcloud instance is ready to go.

Nextcloud AIO automatically downloading and starting all containers

For step-by-step instructions on how to set up Nextcloud AIO on your machine, please refer to our installation guides for Linux and Windows.

Nextcloud AIO v13.3.1: Introducing integrated deSEC

Since Nextcloud AIO is designed to be used in production, it assumes you have everything you need to deploy it, including a domain with DNS records and a valid SSL certificate. This usually requires some setup, so when you’re still testing, you might want an easier solution.

That’s why, to celebrate Nextcloud AIO’s 10,000th GitHub star, we’ve published a new release that includes a feature for automatically setting up a domain and DNS.

With this new feature, you can obtain a free domain for your Nextcloud right from the AIO interface in just a few clicks. It uses the Berlin-based, non-profit DNS hosting service deSEC, which provides an API that Nextcloud AIO can use to handle the technical setup of the domain automatically. This includes setting the necessary DNS records, ensuring the domain points to the right server, and requesting the SSL certificate needed for an HTTPS connection. Since deSEC obtains the certificate via the DNS challenge, you don’t have to open and forward ports manually until you actually want to make the instance publicly accessible.

All of this saves you a lot of time when setting up your Nextcloud.

Nextcloud AIO asking whether you would like a free domain from deSEC

Get started with Nextcloud All-in-One

Curious to try Nextcloud AIO? If you have Docker installed, you can spin up a test instance (without a web server or reverse proxy in place) on your Linux machine with the following command:

sudo docker run \
--sig-proxy=false \
--name nextcloud-aio-mastercontainer \
--restart always \
--publish 80:80 \
--publish 8080:8080 \
--publish 8443:8443 \
--volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config \
--volume /var/run/docker.sock:/var/run/docker.sock:ro \
ghcr.io/nextcloud-releases/all-in-one:latest

Or if you’re on Windows and use Docker Desktop:

docker run ^
--sig-proxy=false ^
--name nextcloud-aio-mastercontainer ^
--restart always ^
--publish 80:80 ^
--publish 8080:8080 ^
--publish 8443:8443 ^
--volume nextcloud_aio_mastercontainer:/mnt/docker-aio-config ^
--volume //var/run/docker.sock:/var/run/docker.sock:ro ^
-e NEXTCLOUD_DATADIR="/run/desktop/mnt/host/c/ncdata" ^
ghcr.io/nextcloud-releases/all-in-one:latest

You can find more details in our installation guides for Linux and Windows.

After logging into Nextcloud AIO with your passphrase, you’ll see a section titled “Don’t have a domain? Get a free one from deSEC” on the start screen.

Start screen of a new Nextcloud AIO instance with the option to register a free domain

Clicking on the button will open a window in which you can create a new account with deSEC or enter your credentials if you already have one.

Nextcloud AIO asking whether you would like a free domain from deSEC

As soon as your account has been activated and you’ve registered the domain, Nextcloud AIO will configure everything for you, including setting up caddy as a reverse proxy and dnsmasq for local DNS resolution. The other containers required for your Nextcloud installation will also be downloaded and started automatically. A list of green containers will let you know that your Nextcloud is ready to go.

Nextcloud AIO automatically downloading and starting all containers

Nextcloud All-in-One for enterprises

Nextcloud AIO is an excellent way to run your own Nextcloud instance at home, but it also performs well at scale. If you’re an organization looking for a Nextcloud provider who manages your instance for a large number of users, then Nextcloud Enterprise is for you — have a look at our trusted partners.

Want to learn more about what Nextcloud Enterprise has to offer? Then join our webinar, where we’ll answer all your questions regarding Nextcloud and your use case.

Nextcloud Hub 26 Spring: Built together, designed for the future

Discover our latest release! Watch the launch of Nextcloud Hub 26 Spring on your favourite platform and read the release blog.

Learn more