How do I create an admin account in Nextcloud?

Hello, I have Nextcloud running on my NAS. The Docker containers are all running and the website is displayed to me. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 5ef00fd4e1f4 linuxserver/nextcloud:latest "/init" 20 hours ago Up 20 hours 80/tcp, 0.0.0.0:9443->443/tcp nextcloud 9bd502e6a8ac linuxserver/mariadb:latest "/init" 20 hours ago Up 20 hours 3306/tcp nextcloud_db But now when…

zigbee2mqtt docker not starting on a raspberry pi?

Hello, I'm having trouble getting zigbee2mqtt to run as docker on my Raspberry Pi. I would like to mosquito zigbee2mqtt nodered run as docker. nodered is already running and I can access it via the browser. mosquitto also tells me that this has started docker ps tells me that all are started docker ps: c1bfbfabb05f…

Adjust Docker project from github before build?

Hello everyone. I'd like to edit some parts of a repository (pingvin-share) (HTML content of the web interface) before creating it in my Docker container manager on a Synology. I've considered downloading all the files and uploading them myself as a new repository, but this would be very time-consuming due to the complexity of the…

Execute C# code when the container is terminated in Docker?

Hello, I'm facing the following problem: I have a C# app (Discord Bot) running in a container on my Docker system. I want certain code in the app to be executed when Docker terminates/stops this container. This is already implemented, with Console.CancelKeyPress Unfortunately, this is only triggered when I terminate the bot locally in the…

Docker Image: why is the page not accessible?

Hello everyone, I wrote a small program in the last few days, just a small API with Fastify and a few NPM packages. So I thought: Why not make a Docker image out of it? After a few tutorials and some online research, I came up with the following Dockerfile: FROM node:current-alpine3.19 WORKDIR /usr/src/app RUN…