Skip to content

AIO is mounting extra volumes in nextcloud-aio-database container #8155

@mrbuckwheet

Description

@mrbuckwheet

Steps to reproduce

  1. run and deploy AIO compose file
  2. check volumes linked to nextcloud-aio-database via portainer

Expected behavior

there should only be one volume "nextcloud-aio-database" mounted at /var/lib/postgresql/data
this

Actual behavior

there are two volumes:
nextcloud-aio-database path in container is /var/lib/postgresql/data
d3e02aa5678b469ec2b3c6cdab5c4faa637d508dcb434621a6e9046f9477fc03 path in container is /var/lib/postgresql

Other information

Host OS

Qnap QTS 5.2.9 with container station v.3.1.2 and portainer 2.39.2 (portainer is running as root via SSH install on qnap)

Output of sudo docker info

Client:
 Version:    27.1.2-qnap8
 Context:    default
 Debug Mode: false
 Plugins:
  buildx: Docker Buildx (Docker Inc.)
    Version:  v0.21.2-qnap1
    Path:     /usr/local/lib/docker/cli-plugins/docker-buildx
  compose: Docker Compose (Docker Inc.)
    Version:  v2.29.1-qnap2
    Path:     /usr/local/lib/docker/cli-plugins/docker-compose

Server:
 Containers: 63
  Running: 53
  Paused: 0
  Stopped: 10
 Images: 60
 Server Version: 27.1.2-qnap8
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Using metacopy: true
  Native Overlay Diff: false
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 1
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay qnet
  Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 kata-runtime nvidia-runtime runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 8fc6bcff51318944179630522a095cc9dbf9f353
 runc version: v1.1.13-0-g58aa920
 init version: de40ad0
 Security Options:
  apparmor
  seccomp
   Profile: builtin
 Kernel Version: 5.10.60-qnap
 Operating System: QTS 5.2.9 (20260327)
 OSType: linux
 Architecture: x86_64
 CPUs: 6
 Total Memory: 31.26GiB
 Name: MrBuckwheet
 ID: 9d0c9182-47c0-4ca0-b747-11eb8349b7ef
 Docker Root Dir: /share/CACHEDEV1_DATA/Container/container-station-data/lib/docker
 Debug Mode: true
  File Descriptors: 498
  Goroutines: 390
  System Time: 2026-05-18T19:05:01.751415313-04:00
  EventsListeners: 1
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false
 Product License: Community Engine
 Default Address Pools:
   Base: 172.29.0.0/16, Size: 22

Docker run command or docker-compose file that you used

services:
  nextcloud:
    image: ghcr.io/nextcloud-releases/all-in-one:latest
    restart: always
    container_name: nextcloud-aio-mastercontainer # This line is not allowed to be changed as otherwise AIO will not work correctly
    volumes:
      - nextcloud_aio_mastercontainer:/mnt/docker-aio-config # This line is not allowed to be changed as otherwise the built-in backup solution will not work
      - /var/run/docker.sock:/var/run/docker.sock:ro # May be changed on macOS, Windows or docker rootless. See the applicable documentation. If adjusting, don't forget to also set 'WATCHTOWER_DOCKER_SOCKET_PATH'!
    ports:
      #- 80:80 # Can be removed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
      - 8136:8080
      #- 8443:8443 # Can be removed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
    environment: # Is needed when using any of the options below

      # AIO_DISABLE_BACKUP_SECTION: false # Setting this to true allows to hide the backup section in the AIO interface. See https://github.com/nextcloud/all-in-one#how-to-disable-the-backup-section
      APACHE_PORT: 11000 # Is needed when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else). See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
      APACHE_IP_BINDING: 0.0.0.0 # Should be set when running behind a web server or reverse proxy (like Apache, Nginx, Cloudflare Tunnel and else) that is running on the same host. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
      BORG_RETENTION_POLICY: --keep-within=7d --keep-weekly=2 --keep-monthly=2 # Allows to adjust borgs retention policy. See https://github.com/nextcloud/all-in-one#how-to-adjust-borgs-retention-policy
      # COLLABORA_SECCOMP_DISABLED: false # Setting this to true allows to disable Collabora's Seccomp feature. See https://github.com/nextcloud/all-in-one#how-to-disable-collaboras-seccomp-feature
      # DOCKER_API_VERSION: 1.44 # You can adjust the internally used docker api version with this variable. ⚠️⚠️⚠️ Warning: please note that only the default api version (unset this variable) is supported and tested by the maintainers of Nextcloud AIO. So use this on your own risk and things might break without warning. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-internally-used-docker-api-version
      NEXTCLOUD_DATADIR: /share/NextCloud # Allows to set the host directory for Nextcloud's datadir. ⚠️⚠️⚠️ Warning: do not set or adjust this value after the initial Nextcloud installation is done! See https://github.com/nextcloud/all-in-one#how-to-change-the-default-location-of-nextclouds-datadir
      # NEXTCLOUD_MOUNT: /share/Shared # Allows the Nextcloud container to access the chosen directory on the host. See https://github.com/nextcloud/all-in-one#how-to-allow-the-nextcloud-container-to-access-directories-on-the-host
      NEXTCLOUD_UPLOAD_LIMIT: 50G # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-upload-limit-for-nextcloud
      # NEXTCLOUD_MAX_TIME: 3600 # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-max-execution-time-for-nextcloud
      NEXTCLOUD_MEMORY_LIMIT: 4096M # Can be adjusted if you need more. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-php-memory-limit-for-nextcloud
      NC_TRUSTED_PROXIES: "10.0.8.136"
      # NEXTCLOUD_TRUSTED_CACERTS_DIR: /path/to/my/cacerts # CA certificates in this directory will be trusted by the OS of the nexcloud container (Useful e.g. for LDAPS) See See https://github.com/nextcloud/all-in-one#how-to-trust-user-defined-certification-authorities-ca
      # NEXTCLOUD_STARTUP_APPS: deck twofactor_totp tasks calendar contacts notes # Allows to modify the Nextcloud apps that are installed on starting AIO the first time. See https://github.com/nextcloud/all-in-one#how-to-change-the-nextcloud-apps-that-are-installed-on-the-first-startup
      # NEXTCLOUD_ADDITIONAL_APKS: imagemagick # This allows to add additional packages to the Nextcloud container permanently. Default is imagemagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-os-packages-permanently-to-the-nextcloud-container
      # NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS: imagick # This allows to add additional php extensions to the Nextcloud container permanently. Default is imagick but can be overwritten by modifying this value. See https://github.com/nextcloud/all-in-one#how-to-add-php-extensions-permanently-to-the-nextcloud-container
      # NEXTCLOUD_ENABLE_DRI_DEVICE: true # This allows to enable the /dev/dri device in the Nextcloud container. ⚠️⚠️⚠️ Warning: this only works if the '/dev/dri' device is present on the host! If it should not exist on your host, don't set this to true as otherwise the Nextcloud container will fail to start! See https://github.com/nextcloud/all-in-one#how-to-enable-hardware-transcoding-for-nextcloud
      # NEXTCLOUD_ENABLE_NVIDIA_GPU: true # This allows to enable the NVIDIA runtime and GPU access for containers that profit from it. ⚠️⚠️⚠️ Warning: this only works if an NVIDIA gpu is installed on the server. See https://github.com/nextcloud/all-in-one#how-to-enable-hardware-acceleration-for-nextcloud.
      # NEXTCLOUD_KEEP_DISABLED_APPS: false # Setting this to true will keep Nextcloud apps that are disabled in the AIO interface and not uninstall them if they should be installed. See https://github.com/nextcloud/all-in-one#how-to-keep-disabled-apps
      # SKIP_DOMAIN_VALIDATION: false # This should only be set to true if things are correctly configured. See https://github.com/nextcloud/all-in-one?tab=readme-ov-file#how-to-skip-the-domain-validation
      TALK_PORT: 3678 # This allows to adjust the port that the talk container is using. See https://github.com/nextcloud/all-in-one#how-to-adjust-the-talk-port
      # WATCHTOWER_DOCKER_SOCKET_PATH: /var/run/docker.sock # Needs to be specified if the docker socket on the host is not located in the default '/var/run/docker.sock'. Otherwise mastercontainer updates will fail. For macos it needs to be '/var/run/docker.sock'
    networks: # Is needed when you want to create the nextcloud-aio network with ipv6-support using this file, see the network config at the bottom of the file
      - nextcloud-aio # Is needed when you want to create the nextcloud-aio network with ipv6-support using this file, see the network config at the bottom of the file

  # # Optional: Caddy reverse proxy. See https://github.com/nextcloud/all-in-one/blob/main/reverse-proxy.md
  # # You can find further examples here: https://github.com/nextcloud/all-in-one/discussions/588
  # caddy:
  #   image: caddy:alpine
  #   restart: always
  #   container_name: caddy
  #   volumes:
  #     - ./Caddyfile:/etc/caddy/Caddyfile
  #     - ./certs:/certs
  #     - ./config:/config
  #     - ./data:/data
  #     - ./sites:/srv
  #   network_mode: "host"

networks:
  nextcloud-aio:
    external: true
    ipam:
      driver: default
      config:
        - subnet: 10.0.8.0/24

volumes:
  nextcloud_aio_mastercontainer:
    name: nextcloud_aio_mastercontainer # This line is not allowed to be changed as otherwise the built-in backup solution will not work

# # Optional: If you need ipv6, follow step 1 and 2 of https://github.com/nextcloud/all-in-one/blob/main/docker-ipv6-support.md first and then uncomment the below config in order to activate ipv6 for the internal nextcloud-aio network.
# # Please make sure to uncomment also the networking lines of the mastercontainer above in order to actually create the network with docker-compose
# networks:
#   nextcloud-aio:
#     name: nextcloud-aio # This line is not allowed to be changed as otherwise the created network will not be used by the other containers of AIO
#     driver: bridge
#     enable_ipv6: true
#     ipam:
#       driver: default
#       config:
#         - subnet: fd12:3456:789a:2::/64 # IPv6 subnet to use

Output of sudo docker logs nextcloud-aio-mastercontainer

Trying to fix docker.sock permissions internally...
Adding internal www-data to group root
Initial startup of Nextcloud All-in-One complete!
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
⚠️ Important: do always use an ip-address if you access this port and not a domain as HSTS might block access to it later!

If your server has port 80 and 8443 open and you point a domain to your server, you can get a valid certificate automatically by opening the Nextcloud AIO Interface via:
https://your-domain-that-points-to-this-server.tld:8443
++ head -1 /mnt/docker-aio-config/data/daily_backup_time
+ BACKUP_TIME=07:00
+ export BACKUP_TIME
+ export DAILY_BACKUP=1
+ DAILY_BACKUP=1
++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' automaticUpdatesAreNotEnabled ']'
+ export AUTOMATIC_UPDATES=1
+ AUTOMATIC_UPDATES=1
++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' successNotificationsAreNotEnabled ']'
+ export SEND_SUCCESS_NOTIFICATIONS=1
+ SEND_SUCCESS_NOTIFICATIONS=1
+ '[' warn '!=' debug ']'
+ set +x
[15-May-2026 23:18:38] NOTICE: fpm is running, pid 187
[15-May-2026 23:18:38] NOTICE: ready to handle connections
Daily backup script has started
Connection to nextcloud-aio-apache (10.0.8.12) 11000 port [tcp/*] succeeded!
Starting mastercontainer update...
(The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
Waiting for watchtower to stop
Updating container images...
Creating daily backup...
Could not get digest of container nextcloud-releases/aio-borgbackup:latest cURL error 6: Could not resolve host: ghcr.io (DNS server returned general failure) (see https://curl.haxx.se/libcurl/c/libcurl-errors.html) for https://ghcr.io/token?scope=repository:nextcloud-releases/aio-borgbackup:pull
Not pulling the ghcr.io/nextcloud-releases/aio-borgbackup image for the nextcloud-aio-borgbackup container because the registry does not seem to be reachable.
Waiting for backup container to stop
Waiting for backup container to stop
Waiting for backup container to stop
Waiting for backup container to stop
Starting and updating containers...
Waiting for the Nextcloud container to start
Waiting for the Nextcloud container to start
Connection to nextcloud-aio-nextcloud (10.0.8.11) 9000 port [tcp/*] succeeded!
Sending backup notification...
Daily backup script has finished
Total reclaimed space: 0B
Deleted Images:
untagged: ghcr.io/nextcloud-releases/aio-watchtower@sha256:0c6cdac927446b5e597ea27658e29197069acd2c7b95a9af0f073d1237409a38
deleted: sha256:6cfc08a97031d06f2e48e5c5d92878ed62f92d8a41d12467dbabcc35842bd248
deleted: sha256:1aab4f4471960e5372e1b79041bbcec970c63917ed845de0aadb07fdb7f89dbc
deleted: sha256:fdd26f4402ae6e19ae8f0ac450ceede9f42952c58042eaffdc6b433bf8488a91
deleted: sha256:7d7c43a547420a8533242786bda04924e6fc7e44eee725295d596422e55652d2

Total reclaimed space: 28.46MB
++ head -1 /mnt/docker-aio-config/data/daily_backup_time
+ BACKUP_TIME=07:00
+ export BACKUP_TIME
+ export DAILY_BACKUP=1
+ DAILY_BACKUP=1
++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' automaticUpdatesAreNotEnabled ']'
+ export AUTOMATIC_UPDATES=1
+ AUTOMATIC_UPDATES=1
++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' successNotificationsAreNotEnabled ']'
+ export SEND_SUCCESS_NOTIFICATIONS=1
+ SEND_SUCCESS_NOTIFICATIONS=1
+ '[' warn '!=' debug ']'
+ set +x
Daily backup script has started
Connection to nextcloud-aio-apache (10.0.8.12) 11000 port [tcp/*] succeeded!
Starting mastercontainer update...
(The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
Waiting for watchtower to stop
Updating container images...
Creating daily backup...
Waiting for backup container to stop
Waiting for backup container to stop
Waiting for backup container to stop
Waiting for backup container to stop
Starting and updating containers...
Waiting for the Nextcloud container to start
Waiting for the Nextcloud container to start
Connection to nextcloud-aio-nextcloud (10.0.8.11) 9000 port [tcp/*] succeeded!
Sending backup notification...
Daily backup script has finished
Deleted Images:
untagged: ghcr.io/nextcloud-releases/aio-borgbackup@sha256:f53a6987e6d596e368b09e7017c148dc8872fcfe02bba51ad8e89026613c866d
deleted: sha256:3d4177d32d928a069e8e278bdd37d8b59e9c6c82445f354e21cbfd473754c2c6
deleted: sha256:6fd622d232d4fc8df5ca94aab4bb48f7865791a8040d6438133fb9616c8168e5
deleted: sha256:7d2313c3f24cb8a3e7f8ffbb09cf99e7767d17de9905e74f41f4875ac71f9693
deleted: sha256:f757ed83df0a685fdb3066bbdd72a11c9df98eb20828cccfb45b7b7090808242

Total reclaimed space: 58.53MB
Total reclaimed space: 0B
++ head -1 /mnt/docker-aio-config/data/daily_backup_time
+ BACKUP_TIME=07:00
+ export BACKUP_TIME
+ export DAILY_BACKUP=1
+ DAILY_BACKUP=1
++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' automaticUpdatesAreNotEnabled ']'
+ export AUTOMATIC_UPDATES=1
+ AUTOMATIC_UPDATES=1
++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' successNotificationsAreNotEnabled ']'
+ export SEND_SUCCESS_NOTIFICATIONS=1
+ SEND_SUCCESS_NOTIFICATIONS=1
+ '[' warn '!=' debug ']'
+ set +x
Daily backup script has started
Connection to nextcloud-aio-apache (10.0.8.12) 11000 port [tcp/*] succeeded!
Starting mastercontainer update...
(The script might get exited due to that. In order to update all the other containers correctly, you need to run this script with the same settings a second time.)
Waiting for watchtower to stop
Updating container images...
Creating daily backup...
Waiting for backup container to stop
Waiting for backup container to stop
Waiting for backup container to stop
Starting and updating containers...
Waiting for the Nextcloud container to start
Waiting for the Nextcloud container to start
Connection to nextcloud-aio-nextcloud (10.0.8.11) 9000 port [tcp/*] succeeded!
Sending backup notification...
Daily backup script has finished
Total reclaimed space: 0B
Total reclaimed space: 0B
++ head -1 /mnt/docker-aio-config/data/daily_backup_time
+ BACKUP_TIME=07:00
+ export BACKUP_TIME
+ export DAILY_BACKUP=1
+ DAILY_BACKUP=1
++ sed -n 2p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' automaticUpdatesAreNotEnabled ']'
+ export AUTOMATIC_UPDATES=1
+ AUTOMATIC_UPDATES=1
++ sed -n 3p /mnt/docker-aio-config/data/daily_backup_time
+ '[' '' '!=' successNotificationsAreNotEnabled ']'
+ export SEND_SUCCESS_NOTIFICATIONS=1
+ SEND_SUCCESS_NOTIFICATIONS=1
+ '[' warn '!=' debug ']'
+ set +x
Deleting duplicate sessions

Output of sudo docker inspect nextcloud-aio-mastercontainer

[
    {
        "Id": "afa1f96f3eb59d9baec2b980963a1b3f1a29d3af104fd2711bfef8e14b36b926",
        "Created": "2026-05-15T23:18:35.703507244Z",
        "Path": "/start.sh",
        "Args": [],
        "State": {
            "Status": "running",
            "Running": true,
            "Paused": false,
            "Restarting": false,
            "OOMKilled": false,
            "Dead": false,
            "Pid": 18214,
            "ExitCode": 0,
            "Error": "",
            "StartedAt": "2026-05-15T23:18:35.918133356Z",
            "FinishedAt": "0001-01-01T00:00:00Z",
            "Health": {
                "Status": "healthy",
                "FailingStreak": 0,
                "Log": [
                    {
                        "Start": "2026-05-18T19:06:24.303202214-04:00",
                        "End": "2026-05-18T19:06:24.361590409-04:00",
                        "ExitCode": 0,
                        "Output": "Connection to 127.0.0.1 80 port [tcp/http] succeeded!\nConnection to 127.0.0.1 8080 port [tcp/http-alt] succeeded!\nConnection to 127.0.0.1 8443 port [tcp/*] succeeded!\nConnection to 127.0.0.1 9876 port [tcp/*] succeeded!\n"
                    },
                    {
                        "Start": "2026-05-18T19:06:54.362377925-04:00",
                        "End": "2026-05-18T19:06:54.422862905-04:00",
                        "ExitCode": 0,
                        "Output": "Connection to 127.0.0.1 80 port [tcp/http] succeeded!\nConnection to 127.0.0.1 8080 port [tcp/http-alt] succeeded!\nConnection to 127.0.0.1 8443 port [tcp/*] succeeded!\nConnection to 127.0.0.1 9876 port [tcp/*] succeeded!\n"
                    },
                    {
                        "Start": "2026-05-18T19:07:24.424250638-04:00",
                        "End": "2026-05-18T19:07:24.481765498-04:00",
                        "ExitCode": 0,
                        "Output": "Connection to 127.0.0.1 80 port [tcp/http] succeeded!\nConnection to 127.0.0.1 8080 port [tcp/http-alt] succeeded!\nConnection to 127.0.0.1 8443 port [tcp/*] succeeded!\nConnection to 127.0.0.1 9876 port [tcp/*] succeeded!\n"
                    },
                    {
                        "Start": "2026-05-18T19:07:54.483202194-04:00",
                        "End": "2026-05-18T19:07:54.542078713-04:00",
                        "ExitCode": 0,
                        "Output": "Connection to 127.0.0.1 80 port [tcp/http] succeeded!\nConnection to 127.0.0.1 8080 port [tcp/http-alt] succeeded!\nConnection to 127.0.0.1 8443 port [tcp/*] succeeded!\nConnection to 127.0.0.1 9876 port [tcp/*] succeeded!\n"
                    },
                    {
                        "Start": "2026-05-18T19:08:24.543084463-04:00",
                        "End": "2026-05-18T19:08:24.602007409-04:00",
                        "ExitCode": 0,
                        "Output": "Connection to 127.0.0.1 80 port [tcp/http] succeeded!\nConnection to 127.0.0.1 8080 port [tcp/http-alt] succeeded!\nConnection to 127.0.0.1 8443 port [tcp/*] succeeded!\nConnection to 127.0.0.1 9876 port [tcp/*] succeeded!\n"
                    }
                ]
            }
        },
        "Image": "sha256:9b498e10f6fb4c98797992d9c258b0f54b65b0ccd12015f69deed201ddef60db",
        "ResolvConfPath": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/containers/afa1f96f3eb59d9baec2b980963a1b3f1a29d3af104fd2711bfef8e14b36b926/resolv.conf",
        "HostnamePath": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/containers/afa1f96f3eb59d9baec2b980963a1b3f1a29d3af104fd2711bfef8e14b36b926/hostname",
        "HostsPath": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/containers/afa1f96f3eb59d9baec2b980963a1b3f1a29d3af104fd2711bfef8e14b36b926/hosts",
        "LogPath": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/containers/afa1f96f3eb59d9baec2b980963a1b3f1a29d3af104fd2711bfef8e14b36b926/afa1f96f3eb59d9baec2b980963a1b3f1a29d3af104fd2711bfef8e14b36b926-json.log",
        "Name": "/nextcloud-aio-mastercontainer",
        "RestartCount": 0,
        "Driver": "overlay2",
        "Platform": "linux",
        "MountLabel": "",
        "ProcessLabel": "",
        "AppArmorProfile": "docker-default",
        "ExecIDs": null,
        "HostConfig": {
            "Binds": [
                "nextcloud_aio_mastercontainer:/mnt/docker-aio-config:rw",
                "/var/run/docker.sock:/var/run/docker.sock:ro"
            ],
            "ContainerIDFile": "",
            "LogConfig": {
                "Type": "json-file",
                "Config": {
                    "max-file": "10",
                    "max-size": "10m"
                }
            },
            "NetworkMode": "nextcloud-aio",
            "PortBindings": {
                "8080/tcp": [
                    {
                        "HostIp": "",
                        "HostPort": "8136"
                    }
                ]
            },
            "RestartPolicy": {
                "Name": "always",
                "MaximumRetryCount": 0
            },
            "AutoRemove": false,
            "VolumeDriver": "",
            "VolumesFrom": null,
            "ConsoleSize": [
                0,
                0
            ],
            "CapAdd": null,
            "CapDrop": null,
            "CgroupnsMode": "host",
            "Dns": null,
            "DnsOptions": null,
            "DnsSearch": null,
            "ExtraHosts": [],
            "GroupAdd": null,
            "IpcMode": "private",
            "Cgroup": "",
            "Links": null,
            "OomScoreAdj": 0,
            "PidMode": "",
            "Privileged": false,
            "PublishAllPorts": false,
            "ReadonlyRootfs": false,
            "SecurityOpt": null,
            "UTSMode": "",
            "UsernsMode": "",
            "ShmSize": 67108864,
            "Runtime": "runc",
            "Isolation": "",
            "CpuShares": 0,
            "Memory": 0,
            "NanoCpus": 0,
            "CgroupParent": "",
            "BlkioWeight": 0,
            "BlkioWeightDevice": null,
            "BlkioDeviceReadBps": null,
            "BlkioDeviceWriteBps": null,
            "BlkioDeviceReadIOps": null,
            "BlkioDeviceWriteIOps": null,
            "CpuPeriod": 0,
            "CpuQuota": 0,
            "CpuRealtimePeriod": 0,
            "CpuRealtimeRuntime": 0,
            "CpusetCpus": "",
            "CpusetMems": "",
            "Devices": null,
            "DeviceCgroupRules": null,
            "DeviceRequests": null,
            "MemoryReservation": 0,
            "MemorySwap": 0,
            "MemorySwappiness": null,
            "OomKillDisable": false,
            "PidsLimit": null,
            "Ulimits": [
                {
                    "Name": "nofile",
                    "Hard": 65535,
                    "Soft": 65535
                }
            ],
            "CpuCount": 0,
            "CpuPercent": 0,
            "IOMaximumIOps": 0,
            "IOMaximumBandwidth": 0,
            "MaskedPaths": [
                "/proc/asound",
                "/proc/acpi",
                "/proc/kcore",
                "/proc/keys",
                "/proc/latency_stats",
                "/proc/timer_list",
                "/proc/timer_stats",
                "/proc/sched_debug",
                "/proc/scsi",
                "/sys/firmware",
                "/sys/devices/virtual/powercap"
            ],
            "ReadonlyPaths": [
                "/proc/bus",
                "/proc/fs",
                "/proc/irq",
                "/proc/sys",
                "/proc/sysrq-trigger"
            ]
        },
        "GraphDriver": {
            "Data": {
                "LowerDir": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/8217534e34e4b620ebe685e2ec5077928b421d23e7dc63c26ded3d355efbdf51-init/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/8765a88524ea6cf009880b171fa5fc7aa7827f7ff0574cbb2c1238e8c254d30c/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/f4e4ab887622ab46d3a59824e4f9ef609f43d04f8f48ce334f46c89af4203ff3/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/fd9b109b84ea63420a5c7bfb14060800bc73b3609d16c73d2c80071247fb98a5/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/fd1ef47ce68801810623afbd21b9d31cc545b48056e7be59cc4d01520f97e1ec/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/b1e5743ed2d65247bc285ee8d6c5eac12c753eb3610afbb1fa022c534415c611/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/7e9ce315ef5a25c7b0afb84200f8ec2deb3272fd92554b98e71370ca6bf349c0/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/ec00f35585e1b186bab2f28bbe013092d85713cd393462994aa4c4eceee580a0/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/8eff7a58beec884343fd6baf317eb4194c1ce4c5671869babeca108960e25b13/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/fe2f43054aa595b29f92a8de53a9f955e645d68a6cf16072e5e3a222a16e430f/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/4afa3fde7b003b13677636e87eebae307cc976e3fe8606115bb111d57d8d1279/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/fe72e77f25ad428dfc4b32aaa2a8051494b65755bd83e6a1db0c566813f7e86e/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/6f34a9bbb04edcbab2aa55facfd1e272be4ee828cfaad49af13daf96b6cd85bb/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/227aa9f18a26565c27a0f347834eda5e9a95a7d16ba2c1cb4b8916ab8c8c8612/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/723e49a9b861cb848cdd2e7fd1918f53d5d55f2d72dbe05b1f4c933a254a1c1f/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/353f196d463d9d8581d763b8819137728dafb25e403862fdfb8a58bfc7daddbe/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/3ea9708d110c279a78cc1288132af33e065776980e0e9423543ffcfa2cdc7c60/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/2d60ea1882c1ee088768ba2bf9723d448f7d23ffe9bff687681cd98a89682e39/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/1261476f551b10ef0b912c97e65f083506c6a577957c279fd5b94bda4da31b71/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/d0c005b05f95d04e492b225aefd111fb40f01dfa6a7f68bb21532ecc362ba65d/diff:/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/dfa540676ec748bedb4d616693accdeb32e00502a024b07c3335225d7b75565d/diff",
                "MergedDir": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/8217534e34e4b620ebe685e2ec5077928b421d23e7dc63c26ded3d355efbdf51/merged",
                "UpperDir": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/8217534e34e4b620ebe685e2ec5077928b421d23e7dc63c26ded3d355efbdf51/diff",
                "WorkDir": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/overlay2/8217534e34e4b620ebe685e2ec5077928b421d23e7dc63c26ded3d355efbdf51/work"
            },
            "Name": "overlay2"
        },
        "Mounts": [
            {
                "Type": "volume",
                "Name": "nextcloud_aio_mastercontainer",
                "Source": "/share/CACHEDEV1_DATA/Container/container-station-data/lib/docker/volumes/nextcloud_aio_mastercontainer/_data",
                "Destination": "/mnt/docker-aio-config",
                "Driver": "local",
                "Mode": "rw",
                "RW": true,
                "Propagation": ""
            },
            {
                "Type": "bind",
                "Source": "/var/run/docker.sock",
                "Destination": "/var/run/docker.sock",
                "Mode": "ro",
                "RW": false,
                "Propagation": "rprivate"
            }
        ],
        "Config": {
            "Hostname": "afa1f96f3eb5",
            "Domainname": "",
            "User": "root",
            "AttachStdin": false,
            "AttachStdout": true,
            "AttachStderr": true,
            "ExposedPorts": {
                "80/tcp": {},
                "8080/tcp": {},
                "8443/tcp": {},
                "9000/tcp": {}
            },
            "Tty": false,
            "OpenStdin": false,
            "StdinOnce": false,
            "Env": [
                "NC_TRUSTED_PROXIES=10.0.8.136",
                "NEXTCLOUD_UPLOAD_LIMIT=50G",
                "NEXTCLOUD_MEMORY_LIMIT=4096M",
                "APACHE_IP_BINDING=0.0.0.0",
                "TALK_PORT=3678",
                "BORG_RETENTION_POLICY=--keep-within=7d --keep-weekly=2 --keep-monthly=2",
                "NEXTCLOUD_DATADIR=/share/NextCloud",
                "APACHE_PORT=11000",
                "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
                "PHPIZE_DEPS=autoconf \t\tdpkg-dev dpkg \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkgconf \t\tre2c",
                "PHP_INI_DIR=/usr/local/etc/php",
                "PHP_CFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64",
                "PHP_CPPFLAGS=-fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64",
                "PHP_LDFLAGS=-Wl,-O1 -pie",
                "GPG_KEYS=REMOVED FOR PRIVACY",
                "PHP_VERSION=8.5.6",
                "PHP_URL=https://www.php.net/distributions/php-8.5.6.tar.xz",
                "PHP_ASC_URL=https://www.php.net/distributions/php-8.5.6.tar.xz.asc",
                "PHP_SHA256=REMOVED FOR PRIVACY",
                "HOME=/var/www"
            ],
            "Cmd": null,
            "Healthcheck": {
                "Test": [
                    "CMD-SHELL",
                    "/healthcheck.sh"
                ]
            },
            "Image": "ghcr.io/nextcloud-releases/all-in-one:latest",
            "Volumes": null,
            "WorkingDir": "/var/www/docker-aio",
            "Entrypoint": [
                "/start.sh"
            ],
            "OnBuild": null,
            "Labels": {
                "com.docker.compose.config-hash": "78a3ee11aacf46a52ca7ac2f15314028392767ddef64775f46590add8dd2740f",
                "com.docker.compose.container-number": "1",
                "com.docker.compose.depends_on": "",
                "com.docker.compose.image": "sha256:9b498e10f6fb4c98797992d9c258b0f54b65b0ccd12015f69deed201ddef60db",
                "com.docker.compose.oneoff": "False",
                "com.docker.compose.project": "nextcloud-aio",
                "com.docker.compose.project.config_files": "/data/compose/113/v3/docker-compose.yml",
                "com.docker.compose.project.working_dir": "/data/compose/113/v3",
                "com.docker.compose.service": "nextcloud",
                "com.docker.compose.version": "",
                "org.opencontainers.image.description": "Easy deployment and maintenance of a Nextcloud server with all dependencies and optional services",
                "org.opencontainers.image.documentation": "https://github.com/nextcloud/all-in-one/blob/main/readme.md",
                "org.opencontainers.image.source": "https://github.com/nextcloud/all-in-one",
                "org.opencontainers.image.title": "Nextcloud All-in-One Mastercontainer",
                "org.opencontainers.image.url": "https://github.com/nextcloud/all-in-one",
                "org.opencontainers.image.vendor": "Nextcloud",
                "wud.watch": "false"
            },
            "StopSignal": "SIGQUIT"
        },
        "NetworkSettings": {
            "Bridge": "",
            "SandboxID": "a3ba3a88930ce0e58508a5e6051bf1ac3268578db73b22c4c7a753e092d00e6f",
            "SandboxKey": "/var/run/docker/netns/a3ba3a88930c",
            "Ports": {
                "80/tcp": null,
                "8080/tcp": [
                    {
                        "HostIp": "0.0.0.0",
                        "HostPort": "8136"
                    }
                ],
                "8443/tcp": null,
                "9000/tcp": null
            },
            "HairpinMode": false,
            "LinkLocalIPv6Address": "",
            "LinkLocalIPv6PrefixLen": 0,
            "SecondaryIPAddresses": null,
            "SecondaryIPv6Addresses": null,
            "EndpointID": "",
            "Gateway": "",
            "GlobalIPv6Address": "",
            "GlobalIPv6PrefixLen": 0,
            "IPAddress": "",
            "IPPrefixLen": 0,
            "IPv6Gateway": "",
            "MacAddress": "",
            "Networks": {
                "nextcloud-aio": {
                    "IPAMConfig": null,
                    "Links": null,
                    "Aliases": [
                        "nextcloud-aio-mastercontainer",
                        "nextcloud"
                    ],
                    "MacAddress": "02:42:0a:00:08:02",
                    "DriverOpts": null,
                    "NetworkID": "d86c0dff253baee89519441aee22c64c12a9de2126939695000bc4e442299255",
                    "EndpointID": "1fc3acc37cfaf4234a214ac267f6ab1f119ea3b1ebd90285731a43369fbadf84",
                    "Gateway": "10.0.8.1",
                    "IPAddress": "10.0.8.2",
                    "IPPrefixLen": 24,
                    "IPv6Gateway": "",
                    "GlobalIPv6Address": "",
                    "GlobalIPv6PrefixLen": 0,
                    "DNSNames": [
                        "nextcloud-aio-mastercontainer",
                        "nextcloud",
                        "afa1f96f3eb5"
                    ]
                }
            }
        }
    }
]

Output of sudo docker ps -a

CONTAINER ID   IMAGE                                                      COMMAND                  CREATED          STATUS                                                                                                                                                       PORTS                                                                                                      NAMES
2e0860e3effa   ghcr.io/nextcloud-releases/aio-apache:latest               "/start.sh /usr/bin/…"   24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      80/tcp, 0.0.0.0:11000->11000/tcp                                                                           nextcloud-aio-apache
d8ca5e975080   ghcr.io/nextcloud-releases/aio-nextcloud:latest            "/start.sh /usr/bin/…"   24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      9000/tcp                                                                                                   nextcloud-aio-nextcloud
f56f4e04f13e   ghcr.io/nextcloud-releases/aio-imaginary:latest            "/start.sh"              24 minutes ago   Up 24 minutes (healthy)                                                                                                                                                                                                                                                 nextcloud-aio-imaginary
bc7ce901463a   ghcr.io/nextcloud-releases/aio-redis:latest                "/start.sh"              24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      6379/tcp                                                                                                   nextcloud-aio-redis
cee2dd7f69ae   ghcr.io/nextcloud-releases/aio-postgresql:latest           "/start.sh"              24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      5432/tcp                                                                                                   nextcloud-aio-database
587a76921bdc   ghcr.io/nextcloud/nextcloud-appapi-harp:release            "start.sh"               24 minutes ago   Up 24 minutes (healthy)                                                                                                                                                                                                                                                 nextcloud-aio-harp
f0114e4bb268   ghcr.io/nextcloud-releases/aio-whiteboard:latest           "/start.sh"              24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      3002/tcp                                                                                                   nextcloud-aio-whiteboard
6bcf3eccbe5b   ghcr.io/nextcloud-releases/aio-notify-push:latest          "/start.sh"              24 minutes ago   Up 24 minutes (healthy)                                                                                                                                                                                                                                                 nextcloud-aio-notify-push
9f5694f1bd45   ghcr.io/nextcloud-releases/aio-talk:latest                 "/start.sh superviso…"   24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      0.0.0.0:3678->3678/tcp, 0.0.0.0:3678->3678/udp                                                             nextcloud-aio-talk
d86fa8eb259d   ghcr.io/nextcloud-releases/aio-collabora:latest            "/start.sh"              24 minutes ago   Up 24 minutes (healthy)                                                                                                                                      9980/tcp                                                                                                   nextcloud-aio-collabora
d07e8280990c   ghcr.io/seerr-team/seerr:latest                            "docker-entrypoint.s…"   44 minutes ago   Up 44 minutes (healthy)                                                                                                                                      0.0.0.0:5055->5055/tcp                                                                                     seerr
d7ead618aacf   ghcr.io/linuxserver/prowlarr:latest                        "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:9696->9696/tcp                                                                                     prowlarr
249fdf846d92   ghcr.io/advplyr/audiobookshelf:latest                      "tini -- node index.…"   44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:4041->80/tcp                                                                                       audiobookshelf
140e601b9945   ghcr.io/linuxserver/tautulli:latest                        "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:8181->8181/tcp                                                                                     tautulli
b8980923bf39   ghcr.io/linuxserver/readarr:develop-0.4.18.2805-ls157      "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                8787/tcp, 0.0.0.0:8788->8788/tcp                                                                           readarr-audiobooks
76d081392a5b   ghcr.io/haveagitgat/tdarr:latest                           "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:8265-8266->8265-8266/tcp, 8267/tcp                                                                 tdarr
7e569484b283   ghcr.io/linuxserver/bazarr:latest                          "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:6767->6767/tcp                                                                                     bazarr
7a5aec2cf816   ghcr.io/linuxserver/qbittorrent:latest                     "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                6881/tcp, 0.0.0.0:8113->8113/tcp, 8080/tcp, 6881/udp, 0.0.0.0:56881->56881/tcp, 0.0.0.0:56881->56881/udp   qbittorrent
778d6d51839e   ghcr.io/linuxserver/radarr:latest                          "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:7878->7878/tcp                                                                                     radarr
f12c41bce9ba   kometateam/kometa:latest                                   "/tini -s python3 ko…"   44 minutes ago   Up 44 minutes                                                                                                                                                                                                                                                           kometa
85f1bb95db3a   ghcr.io/recyclarr/recyclarr:latest                         "/sbin/tini -- /entr…"   44 minutes ago   Up 44 minutes                                                                                                                                                                                                                                                           recyclarr
c7e8881816b2   ghcr.io/linuxserver/sabnzbd:latest                         "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                8080/tcp, 0.0.0.0:8888->8888/tcp                                                                           sabnzbd
e516993ba05d   ghcr.io/linuxserver/lidarr:latest                          "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:8686->8686/tcp                                                                                     lidarr
d9260fd00137   ghcr.io/linuxserver/sonarr:latest                          "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:8989->8989/tcp                                                                                     sonarr
1b44e0d59cc2   plexinc/pms-docker                                         "/init"                  44 minutes ago   Up 44 minutes (healthy)                                                                                                                                      1900/udp, 32410/udp, 8324/tcp, 32412-32414/udp, 32469/tcp, 0.0.0.0:32400->32400/tcp                        plex
1cad5f3002db   ghcr.io/linuxserver/readarr:develop-0.4.18.2805-ls157      "/init"                  44 minutes ago   Up 44 minutes                                                                                                                                                0.0.0.0:8787->8787/tcp                                                                                     readarr-ebooks
3fc6cb609281   ghcr.io/nextcloud-releases/aio-borgbackup:latest           "/start.sh"              16 hours ago     Exited (0) 16 hours ago                                                                                                                                                                                                                                                 nextcloud-aio-borgbackup
5541f17f5d77   ghcr.io/nextcloud-releases/aio-watchtower:latest           "/start.sh"              16 hours ago     Exited (0) 16 hours ago                                                                                                                                                                                                                                                 nextcloud-aio-watchtower
95ee7477a21a   ghcr.io/linuxserver/radarr:latest                          "/init"                  29 hours ago     Up 29 hours                                                                                                                                                  0.0.0.0:7879->7878/tcp                                                                                     radarr-sharing
f2cc313c19de   ghcr.io/linuxserver/sonarr:latest                          "/init"                  37 hours ago     Up 37 hours                                                                                                                                                  0.0.0.0:8988->8989/tcp                                                                                     sonarr-sharing
5cadcd7388b9   ghcr.io/linuxserver/speedtest-tracker:latest               "/init"                  2 days ago       Up 2 days                                                                                                                                                    443/tcp, 0.0.0.0:55001->80/tcp                                                                             speedtest
5f5dedca383f   ghcr.io/linuxserver/pairdrop:latest                        "/init"                  2 days ago       Up 2 days                                                                                                                                                    3000/tcp                                                                                                   pairdrop
afa1f96f3eb5   ghcr.io/nextcloud-releases/all-in-one:latest               "/start.sh"              3 days ago       Up 3 days (healthy)                                                                                                                                          80/tcp, 8443/tcp, 9000/tcp, 0.0.0.0:8136->8080/tcp                                                         nextcloud-aio-mastercontainer
5e5a3a942417   ghcr.io/linuxserver/nextcloud:latest                       "/init"                  3 days ago       Up 3 days                                                                                                                                                    80/tcp, 443/tcp                                                                                            nextcloud-inframe
3f57dad27e67   postgres:16-alpine                                         "docker-entrypoint.s…"   4 days ago       Up 3 days (healthy)                                                                                                                                          5432/tcp                                                                                                   postgresql
2e070dc52424   ghcr.io/linuxserver/calibre:latest                         "/init"                  7 days ago       Up 3 days                                                                                                                                                    3000-3001/tcp, 0.0.0.0:8081->8081/tcp, 0.0.0.0:7080->8080/tcp, 0.0.0.0:7081->8181/tcp                      calibre
3ca4985bf353   ghcr.io/open-webui/open-webui:latest                       "bash start.sh"          8 days ago       Up 3 days (healthy)                                                                                                                                          0.0.0.0:3000->8080/tcp                                                                                     webUI
225b1edac811   wordpress:latest                                           "docker-entrypoint.s…"   9 days ago       Up 3 days                                                                                                                                                    80/tcp                                                                                                     wordpress
01aeaa6b1ebe   ghcr.io/homarr-labs/homarr:latest                          "/app/entrypoint.sh …"   10 days ago      Up 3 days                                                                                                                                                    0.0.0.0:7575->7575/tcp                                                                                     homarr
7738572c6d53   portainer/portainer-ee:lts                                 "/portainer"             11 days ago      Up 3 days                                                                                                                                                    0.0.0.0:8000->8000/tcp, 9443/tcp, 0.0.0.0:9001->9000/tcp                                                   portainer
f61d0ab0e730   kometateam/imagemaid:latest                                "/tini -s python3 im…"   2 weeks ago      Up 3 days                                                                                                                                                                                                                                                               Kometa-ImageMaid
80f7bb585ca2   qmcgaw/ddns-updater:latest                                 "/updater/ddns-updat…"   2 weeks ago      Up 3 days (healthy)                                                                                                                                          0.0.0.0:4011->4011/tcp, 8000/tcp                                                                           ddns-updater
36da9ef19f72   ghcr.io/alexta69/metube:latest                             "/usr/bin/tini -g --…"   2 weeks ago      Up 3 days (healthy)                                                                                                                                          0.0.0.0:18081->8081/tcp                                                                                    MeTube
81d168228789   kometateam/overlay-reset:latest                            "/tini -s python3 ov…"   3 weeks ago      Exited (0) 3 weeks ago                                                                                                                                                                                                                                                  Kometa-Overlay-Reset1
5d638b15364d   ghcr.io/goauthentik/server:2026.2.2                        "dumb-init -- ak ser…"   5 weeks ago      Up 3 days (healthy)                                                                                                                                          0.0.0.0:9000->9000/tcp, 0.0.0.0:9100->9443/tcp                                                             authentik-server
22fce609fdb3   ghcr.io/goauthentik/server:2026.2.2                        "dumb-init -- ak wor…"   5 weeks ago      Up 3 days (healthy)                                                                                                                                                                                                                                                     authentik-worker
e60adb9df237   ghcr.io/meeb/tubesync:latest                               "/init"                  7 weeks ago      Exited (137) 7 weeks ago                                                                                                                                                                                                                                                tubesync
35c8ca52db08   docker.stirlingpdf.com/stirlingtools/stirling-pdf:latest   "tini -- /scripts/in…"   7 weeks ago      Exited (0) 6 weeks ago                                                                                                                                                                                                                                                  StirlingPDF
ed8b15de11ee   netplexflix/tssk:latest                                    "/entrypoint.sh"         2 months ago     Up 3 days                                                                                                                                                                                                                                                               tssk
8342f7d78474   golift/notifiarr:latest                                    "/notifiarr"             2 months ago     Up 3 days                                                                                                                                                    0.0.0.0:5454->5454/tcp                                                                                     notifiarr
5f0face5d4a6   onlyoffice/documentserver:latest                           "/app/ds/run-documen…"   2 months ago     Up 3 days                                                                                                                                                    443/tcp, 0.0.0.0:6380->80/tcp                                                                              onlyoffice
f180d1a37e80   mauricenino/dashdot:nvidia                                 "node server/dist/in…"   2 months ago     Up 3 days                                                                                                                                                    0.0.0.0:36005->3001/tcp                                                                                    dash
56b4a9a09e75   jc21/nginx-proxy-manager:latest                            "/init"                  3 months ago     Up 3 days                                                                                                                                                    0.0.0.0:80-81->80-81/tcp, 0.0.0.0:443->443/tcp                                                             Nginx-PM
059527c325ba   thomst08/requestrr:latest                                  "dotnet Requestrr.We…"   8 months ago     Up 3 days                                                                                                                                                    0.0.0.0:4545->4545/tcp                                                                                     requestrr
96a6db6a2786   ghcr.io/drazzilb08/daps:latest                             "bash start.sh"          8 months ago     Up 3 days                                                                                                                                                    0.0.0.0:7800->8000/tcp                                                                                     daps
87eaf4bd17d7   kometateam/overlay-reset:latest                            "/tini -s python3 ov…"   9 months ago     Exited (0) 9 months ago                                                                                                                                                                                                                                                 Kometa-Overlay-Reset
c0d152202057   dnsforge/xteve:latest                                      "/bin/sh -c $XTEVE_B…"   11 months ago    Exited (2) 2 weeks ago                                                                                                                                                                                                                                                  xteve
61cb5dc0df12   wolveix/satisfactory-server:latest                         "/init.sh"               11 months ago    Exited (137) 11 months ago                                                                                                                                                                                                                                              satisfactory
ef8b17022115   organizr/organizr:latest                                   "/init"                  11 months ago    Up 3 days (healthy)                                                                                                                                          443/tcp, 0.0.0.0:6363->80/tcp                                                                              organizr
4d838c72b44b   itzg/minecraft-bedrock-server:latest                       "/usr/local/bin/entr…"   11 months ago    Exited (0) 11 months ago                                                                                                                                                                                                                                                minecraft-bedrock-server
c5ca9827a32c   thijsvanloef/palworld-server-docker:latest                 "/home/steam/server/…"   11 months ago    Exited (137) 11 months ago                                                                                                                                                                                                                                              palworld-server
d350f92763ba   mysql:8.2.0                                                "docker-entrypoint.s…"   11 months ago    Up 3 days (healthy)                                                                                                                                          3306/tcp, 33060/tcp                                                                                        wordpress-db
1a30b6fa47ff   containrrr/watchtower:latest                               "/watchtower"            13 months ago    Up 3 days (healthy)                                                                                                                                          8080/tcp   

Other valuable info

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    1. to developAccepted and waiting to be taken care ofbugSomething isn't workinghelp wantedExtra attention is neededneeds infoNot enough information provided

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions