Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nextcloud not deploying #3045

Open
JRTax opened this issue Jan 14, 2025 · 14 comments
Open

Nextcloud not deploying #3045

JRTax opened this issue Jan 14, 2025 · 14 comments

Comments

@JRTax
Copy link

JRTax commented Jan 14, 2025

I'm not sure if its an duplicate of #2998 if so, sorry.

Currently my Nextcloud keeps getting stuck on "Deploying", I upgraded to the ElectricEel-24.10.1 version of TrueNAS.
If I visit the nextcloud webpage it shows the following error:
"Configuration was not read or initialized correctly, not overwriting /var/www/html/config/config.php".

Can I fix this issue, or do I have to go back to the previous TrueNAS version?

@stavros-k
Copy link
Contributor

Please provide additional information.
Logs, Configuration etc.

@JRTax
Copy link
Author

JRTax commented Jan 15, 2025

Hello Stavros-K,

Thanks for the reaction.
I attached the truenas logs, the logs from the container and screenshots from the config.
If you need any more information, please ask.

Nextcloud settings 5
Nextcloud settings 4
Nextcloud settings 3
Nextcloud settings 2
Nextcloud settings 1
Nextcloud permissions.txt
Nextcloud postgress upgrade.txt
Nextcloud postgress.txt
Nextcloud redis.txt
Nextcloud logs.txt
debug-truenas-20250115134228.zip

@Henry17888
Copy link

Henry17888 commented Jan 16, 2025

@stavros-k Hi Stavros-K,
I'm newbee of Truenas scale 24.10.
And I got same error when I try to upgrade Nextcloud to the latest version.
I checked the postgres logs
image
It seems like permissions issues.
So I checked the permisions.
image
I noticed that new UID was added.
So I checked the UID
image
While, I don't have the UID=1001 between UID=950 to UID=3000

I don't know whether it's the problem. Just wish it can help.

@Henry17888
Copy link

I just upgrade n8n and Odoo, with same error.
image

@stavros-k
Copy link
Contributor

I attached the truenas logs, the logs from the container and screenshots from the config.

I don't see anything that would point to an actual issue that I can work with.
Please share the output of

sudo docker container inspect ix-nextcloud-nextcloud-1 | jq

@stavros-k
Copy link
Contributor

It seems like permissions issues.
So I checked the permisions

Yes its permissions issues,
Btw the image you show here is just informational as to what each container runs as. Not the current permissions of the files.

While, I don't have the UID=1001 between UID=950 to UID=3000

  • User/Group on the host does not match to User/Group inside the container. IDs do.
  • User/Group does NOT have to exist on the host.
  • You need to ensure postgres data are owned by 999 and have 0700 perms.
chown 999:999 -R /path/to/postgres/data
chmod 0700 -R /path/to/postgres/data

Replace /path/to/postgres/data with the actual path

@Henry17888
Copy link

Henry17888 commented Jan 16, 2025

I tried
chown 999:999 -R /path/to/postgres/data chmod 0700 -R /path/to/postgres/data

image

And the permissions
image

After this, I stop the "deploying" nextcloud, and start Nextcloud, and still deploying~
image

@stavros-k
Copy link
Contributor

Did you check the file mentioned in the error...?

@Henry17888
Copy link

Did you check the file mentioned in the error...?

Did you mean the log file: /var/log/app_lifecycle.log ?

Or can you help me check it?

@Henry17888
Copy link

Did you check the file mentioned in the error...?

Did you mean the log file: /var/log/app_lifecycle.log ?

Or can you help me check it?

I checked the postgres logs
Image

@stavros-k
Copy link
Contributor

Does postgres data directory have ACLs applied?
If yes, strip them and re-run chmod command.
permissions should read
drwx------ ....

@Henry17888
Copy link

Does postgres data directory have ACLs applied? If yes, strip them and re-run chmod command. permissions should read drwx------ ....

Here is the permissions

Image

@stavros-k
Copy link
Contributor

Here is the permissions

Do you have ACLs applied on that dataset from the permissions screen on web ui?

@JRTax
Copy link
Author

JRTax commented Jan 16, 2025

I attached the truenas logs, the logs from the container and screenshots from the config.

I don't see anything that would point to an actual issue that I can work with. Please share the output of

sudo docker container inspect ix-nextcloud-nextcloud-1 | jq

Thanks for the reaction.

Here is the output (I removed the passwords for security reasons):

[
  {
    "Id": "b08cb275a0ebe83c09c0c7dd0e6d35574ba9ce43b210a66ff42ef4a4118001ff",
    "Created": "2025-01-15T12:43:29.214620227Z",
    "Path": "/entrypoint.sh",
    "Args": [
      "apache2-foreground"
    ],
    "State": {
      "Status": "running",
      "Running": true,
      "Paused": false,
      "Restarting": false,
      "OOMKilled": false,
      "Dead": false,
      "Pid": 583737,
      "ExitCode": 0,
      "Error": "",
      "StartedAt": "2025-01-15T12:43:35.911247145Z",
      "FinishedAt": "0001-01-01T00:00:00Z",
      "Health": {
        "Status": "unhealthy",
        "FailingStreak": 10183,
        "Log": [
          {
            "Start": "2025-01-16T18:13:38.755280349+01:00",
            "End": "2025-01-16T18:13:38.83315165+01:00",
            "ExitCode": 22,
            "Output": "curl: (22) The requested URL returned error: 500\n"
          },
          {
            "Start": "2025-01-16T18:13:48.833788513+01:00",
            "End": "2025-01-16T18:13:48.921472973+01:00",
            "ExitCode": 22,
            "Output": "curl: (22) The requested URL returned error: 500\n"
          },
          {
            "Start": "2025-01-16T18:13:58.923024575+01:00",
            "End": "2025-01-16T18:13:59.013856751+01:00",
            "ExitCode": 22,
            "Output": "curl: (22) The requested URL returned error: 500\n"
          },
          {
            "Start": "2025-01-16T18:14:09.014421547+01:00",
            "End": "2025-01-16T18:14:09.093339633+01:00",
            "ExitCode": 22,
            "Output": "curl: (22) The requested URL returned error: 500\n"
          },
          {
            "Start": "2025-01-16T18:14:19.094750329+01:00",
            "End": "2025-01-16T18:14:19.182391042+01:00",
            "ExitCode": 22,
            "Output": "curl: (22) The requested URL returned error: 500\n"
          }
        ]
      }
    },
    "Image": "sha256:ec4e234ca62533ea10dbc1503b39f21de031bf08b41f5c3eed967ccfdd6eb125",
    "ResolvConfPath": "/mnt/.ix-apps/docker/containers/b08cb275a0ebe83c09c0c7dd0e6d35574ba9ce43b210a66ff42ef4a4118001ff/resolv.conf",
    "HostnamePath": "/mnt/.ix-apps/docker/containers/b08cb275a0ebe83c09c0c7dd0e6d35574ba9ce43b210a66ff42ef4a4118001ff/hostname",
    "HostsPath": "/mnt/.ix-apps/docker/containers/b08cb275a0ebe83c09c0c7dd0e6d35574ba9ce43b210a66ff42ef4a4118001ff/hosts",
    "LogPath": "/mnt/.ix-apps/docker/containers/b08cb275a0ebe83c09c0c7dd0e6d35574ba9ce43b210a66ff42ef4a4118001ff/b08cb275a0ebe83c09c0c7dd0e6d35574ba9ce43b210a66ff42ef4a4118001ff-json.log",
    "Name": "/ix-nextcloud-nextcloud-1",
    "RestartCount": 0,
    "Driver": "overlay2",
    "Platform": "linux",
    "MountLabel": "",
    "ProcessLabel": "",
    "AppArmorProfile": "docker-default",
    "ExecIDs": null,
    "HostConfig": {
      "Binds": null,
      "ContainerIDFile": "",
      "LogConfig": {
        "Type": "json-file",
        "Config": {}
      },
      "NetworkMode": "ix-nextcloud_default",
      "PortBindings": {
        "80/tcp": [
          {
            "HostIp": "",
            "HostPort": "9001"
          }
        ]
      },
      "RestartPolicy": {
        "Name": "unless-stopped",
        "MaximumRetryCount": 0
      },
      "AutoRemove": false,
      "VolumeDriver": "",
      "VolumesFrom": null,
      "ConsoleSize": [
        0,
        0
      ],
      "CapAdd": [
        "CHOWN",
        "DAC_OVERRIDE",
        "FOWNER",
        "NET_BIND_SERVICE",
        "NET_RAW",
        "SETGID",
        "SETUID"
      ],
      "CapDrop": [
        "ALL"
      ],
      "CgroupnsMode": "private",
      "Dns": null,
      "DnsOptions": null,
      "DnsSearch": null,
      "ExtraHosts": [],
      "GroupAdd": [
        "568"
      ],
      "IpcMode": "private",
      "Cgroup": "",
      "Links": null,
      "OomScoreAdj": 0,
      "PidMode": "",
      "Privileged": false,
      "PublishAllPorts": false,
      "ReadonlyRootfs": false,
      "SecurityOpt": [
        "no-new-privileges"
      ],
      "UTSMode": "",
      "UsernsMode": "",
      "ShmSize": 67108864,
      "Runtime": "runc",
      "Isolation": "",
      "CpuShares": 0,
      "Memory": 10737418240,
      "NanoCpus": 4000000000,
      "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": 21474836480,
      "MemorySwappiness": null,
      "OomKillDisable": null,
      "PidsLimit": null,
      "Ulimits": null,
      "CpuCount": 0,
      "CpuPercent": 0,
      "IOMaximumIOps": 0,
      "IOMaximumBandwidth": 0,
      "Mounts": [
        {
          "Type": "volume",
          "Target": "/tmp",
          "VolumeOptions": {}
        },
        {
          "Type": "bind",
          "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
          "Target": "/var/www/html",
          "BindOptions": {
            "Propagation": "rprivate"
          }
        },
        {
          "Type": "bind",
          "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
          "Target": "/var/www/html/config",
          "BindOptions": {
            "Propagation": "rprivate"
          }
        },
        {
          "Type": "bind",
          "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
          "Target": "/var/www/html/custom_apps",
          "BindOptions": {
            "Propagation": "rprivate"
          }
        },
        {
          "Type": "bind",
          "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
          "Target": "/var/www/html/data",
          "BindOptions": {
            "Propagation": "rprivate"
          }
        },
        {
          "Type": "bind",
          "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
          "Target": "/var/www/html/themes",
          "BindOptions": {
            "Propagation": "rprivate"
          }
        }
      ],
      "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": "/mnt/.ix-apps/docker/overlay2/c58fe05e7ac47ce89b71be9a5dcb16230fd775821a1cac37bd308fe546946c07-init/diff:/mnt/.ix-apps/docker/overlay2/241njaexaiwnnqg2wnblldc4m/diff:/mnt/.ix-apps/docker/overlay2/3jdt4ivqeogfbldof9j0wokx5/diff:/mnt/.ix-apps/docker/overlay2/5cyjwdlps7rjr785s5dph79z0/diff:/mnt/.ix-apps/docker/overlay2/thflf0zwk3fo67v5ezcsst5ji/diff:/mnt/.ix-apps/docker/overlay2/koqerefb9freq4r44jnipip4v/diff:/mnt/.ix-apps/docker/overlay2/kmawll09tjs0lji1ufl68paqu/diff:/mnt/.ix-apps/docker/overlay2/3chlusts4ysgk2ngvof09a5on/diff:/mnt/.ix-apps/docker/overlay2/4efe8c638f627df745d4150ac063d26ab442901de6f8f54479469e59e23075df/diff:/mnt/.ix-apps/docker/overlay2/12f798a39d09993d28b958859a4d89e5ed95d83635bbac22ce580da51c3cb9c5/diff:/mnt/.ix-apps/docker/overlay2/2fece09831390e695091e196fa6c2b41a0e61bf710b42acf2681df689181bb68/diff:/mnt/.ix-apps/docker/overlay2/dc25de0d90b55b45862b6530c9dfd9ac3b8cb7647778420d9fa1f8351754f692/diff:/mnt/.ix-apps/docker/overlay2/8486c1053595a65eb87a1708203af4506da8c5b9517afb403ea4649d8d98c66b/diff:/mnt/.ix-apps/docker/overlay2/3d1c25f1d31ae7a6ddbcc5ff0d98844148171a6ade8f9311840ed3e0a48fa83f/diff:/mnt/.ix-apps/docker/overlay2/e24b8fafb95d311c0fcfd4709721a84d675b725bee54df451b2f0bcbd85ddbe3/diff:/mnt/.ix-apps/docker/overlay2/cc6bebe5d672df6c270d8e81e17771387f86d1bec64856d49d20927e98333293/diff:/mnt/.ix-apps/docker/overlay2/6cdd0785d8c85665a4403e9902c561adef41d3ca3abb444234d7ece7ad050567/diff:/mnt/.ix-apps/docker/overlay2/d6eb20fa1765808fddd5810bebfea3a19ebda15272fe8ee7b826fef74f12c240/diff:/mnt/.ix-apps/docker/overlay2/9d73bd62037c6f11a3b77b31a79fd4ac9dcb435302924f96275bec62fbf71163/diff:/mnt/.ix-apps/docker/overlay2/aa947d5be80377572ed15169760de1ed5f95a7982aa8b1863fb0cbcfc8584ac6/diff:/mnt/.ix-apps/docker/overlay2/bf445969f85edd020b836a452386c0891992009334776cb8833e7e04bc4301a0/diff:/mnt/.ix-apps/docker/overlay2/866b9cfbd0e2fd7b6c7e4ac678d53e96aefd241216c86fda43acbe179d1e97e1/diff:/mnt/.ix-apps/docker/overlay2/d41b4d0bdff7703c50a3e75d0593cfde83278bed00637d24d555aeb993d07135/diff:/mnt/.ix-apps/docker/overlay2/587200d0285c7baeff40402a7b6fca34c604b1e89d76c252da65c9cbebab8701/diff:/mnt/.ix-apps/docker/overlay2/996626d29a8106b27fcca5abd90bf6de1c45805be84694c982eecbd218b690c8/diff:/mnt/.ix-apps/docker/overlay2/0a258aae8cf4c5168c1201ecc5082940f584fda02c1cfbd4f7dd59f6c07fb660/diff:/mnt/.ix-apps/docker/overlay2/891a0281ea411d64f4593f9632f4fa3c0db789d1170bfae4ff04609c25664358/diff:/mnt/.ix-apps/docker/overlay2/0933fc249ea564c6e852164a43511adc4dadad23eef3fb64ea24a60d2c1991ac/diff:/mnt/.ix-apps/docker/overlay2/fc01945daa44227b92fdaf8dec9608e67b91208ca3066841ad521c89e0e755c3/diff:/mnt/.ix-apps/docker/overlay2/d57bc6462534bf2bfe14cab32c21d67462ed2ac4d723aeb31a5694f02109ccb6/diff",
        "MergedDir": "/mnt/.ix-apps/docker/overlay2/c58fe05e7ac47ce89b71be9a5dcb16230fd775821a1cac37bd308fe546946c07/merged",
        "UpperDir": "/mnt/.ix-apps/docker/overlay2/c58fe05e7ac47ce89b71be9a5dcb16230fd775821a1cac37bd308fe546946c07/diff",
        "WorkDir": "/mnt/.ix-apps/docker/overlay2/c58fe05e7ac47ce89b71be9a5dcb16230fd775821a1cac37bd308fe546946c07/work"
      },
      "Name": "overlay2"
    },
    "Mounts": [
      {
        "Type": "bind",
        "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
        "Destination": "/var/www/html/config",
        "Mode": "",
        "RW": true,
        "Propagation": "rprivate"
      },
      {
        "Type": "bind",
        "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
        "Destination": "/var/www/html/custom_apps",
        "Mode": "",
        "RW": true,
        "Propagation": "rprivate"
      },
      {
        "Type": "bind",
        "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
        "Destination": "/var/www/html/data",
        "Mode": "",
        "RW": true,
        "Propagation": "rprivate"
      },
      {
        "Type": "bind",
        "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
        "Destination": "/var/www/html/themes",
        "Mode": "",
        "RW": true,
        "Propagation": "rprivate"
      },
      {
        "Type": "volume",
        "Name": "dded1b81718b99322cbda239605d9b264e3a2237e4f34ed6403a0f3501caa3fd",
        "Source": "/mnt/.ix-apps/docker/volumes/dded1b81718b99322cbda239605d9b264e3a2237e4f34ed6403a0f3501caa3fd/_data",
        "Destination": "/tmp",
        "Driver": "local",
        "Mode": "z",
        "RW": true,
        "Propagation": ""
      },
      {
        "Type": "bind",
        "Source": "/mnt/.ix-apps/app_mounts/nextcloud/ix-nextcloud_data",
        "Destination": "/var/www/html",
        "Mode": "",
        "RW": true,
        "Propagation": "rprivate"
      }
    ],
    "Config": {
      "Hostname": "b08cb275a0eb",
      "Domainname": "",
      "User": "0:0",
      "AttachStdin": false,
      "AttachStdout": true,
      "AttachStderr": true,
      "ExposedPorts": {
        "80/tcp": {}
      },
      "Tty": false,
      "OpenStdin": false,
      "StdinOnce": false,
      "Env": [
        "NVIDIA_VISIBLE_DEVICES=void",
        "POSTGRES_DB=nextcloud",
        "REDIS_HOST_PASSWORD=(removed)",
        "PHP_UPLOAD_LIMIT=25G",
        "UMASK_SET=002",
        "POSTGRES_HOST=postgres:5432",
        "POSTGRES_USER=nextcloud",
        "UMASK=002",
        "REDIS_HOST_PORT=6379",
        "TZ=Etc/UTC",
        "PHP_MEMORY_LIMIT=4096M",
        "NEXTCLOUD_TRUSTED_DOMAINS=127.0.0.1 localhost nextcloud 192.168.1.240",
        "NEXTCLOUD_ADMIN_USER=Jordy",
        "NEXTCLOUD_DATA_DIR=/var/www/html/data",
        "POSTGRES_PASSWORD=(removed)",
        "REDIS_HOST=redis",
        "NEXTCLOUD_ADMIN_PASSWORD=(removed)",
        "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
        "PHPIZE_DEPS=autoconf \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\tlibc-dev \t\tmake \t\tpkg-config \t\tre2c",
        "PHP_INI_DIR=/usr/local/etc/php",
        "APACHE_CONFDIR=/etc/apache2",
        "APACHE_ENVVARS=/etc/apache2/envvars",
        "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=39B641343D8C104B2B146DC3F9C39DC0B9698544 E60913E4DF209907D8E30D96659A97C9CF2A795A 1198C0117593497A5EC5C199286AF1F9897469DC",
        "PHP_VERSION=8.2.27",
        "PHP_URL=https://www.php.net/distributions/php-8.2.27.tar.xz",
        "PHP_ASC_URL=https://www.php.net/distributions/php-8.2.27.tar.xz.asc",
        "PHP_SHA256=3eec91294d8c09b3df80b39ec36d574ed9b05de4c8afcb25fa215d48f9ecbc6b",
        "APACHE_BODY_LIMIT=1073741824",
        "NEXTCLOUD_VERSION=30.0.4"
      ],
      "Cmd": [
        "apache2-foreground"
      ],
      "Healthcheck": {
        "Test": [
          "CMD-SHELL",
          "curl --silent --output /dev/null --show-error --fail --header \"Host: localhost\" http://127.0.0.1:80/status.php"
        ],
        "Interval": 10000000000,
        "Timeout": 5000000000,
        "StartPeriod": 10000000000,
        "Retries": 30
      },
      "Image": "ix-nextcloud:30.0.4_b3b903e5b1571f177f2d8f682f7f50ab0ee7e71d83bb2433a0ea401447c8f1b8",
      "Volumes": {
        "/var/www/html": {}
      },
      "WorkingDir": "/var/www/html",
      "Entrypoint": [
        "/entrypoint.sh"
      ],
      "OnBuild": null,
      "Labels": {
        "com.docker.compose.config-hash": "d596690e629954e45bb55bc1c328d1c2c62f4d643193b126e752946d2f2bc1e9",
        "com.docker.compose.container-number": "1",
        "com.docker.compose.depends_on": "postgres:service_healthy:false,redis:service_healthy:false,permissions:service_completed_successfully:false",
        "com.docker.compose.image": "sha256:ec4e234ca62533ea10dbc1503b39f21de031bf08b41f5c3eed967ccfdd6eb125",
        "com.docker.compose.oneoff": "False",
        "com.docker.compose.project": "ix-nextcloud",
        "com.docker.compose.project.config_files": "/mnt/.ix-apps/app_configs/nextcloud/versions/1.5.13/templates/rendered/docker-compose.yaml",
        "com.docker.compose.project.working_dir": "/mnt/.ix-apps/app_configs/nextcloud/versions/1.5.13/templates/rendered",
        "com.docker.compose.service": "nextcloud",
        "com.docker.compose.version": "2.29.1"
      },
      "StopSignal": "SIGWINCH"
    },
    "NetworkSettings": {
      "Bridge": "",
      "SandboxID": "ed924cafee6b6b11e2600bf18b63e6d56c51e884346a3d47cfc08d1dc833596a",
      "SandboxKey": "/var/run/docker/netns/ed924cafee6b",
      "Ports": {
        "80/tcp": [
          {
            "HostIp": "0.0.0.0",
            "HostPort": "9001"
          },
          {
            "HostIp": "::",
            "HostPort": "9001"
          }
        ]
      },
      "HairpinMode": false,
      "LinkLocalIPv6Address": "",
      "LinkLocalIPv6PrefixLen": 0,
      "SecondaryIPAddresses": null,
      "SecondaryIPv6Addresses": null,
      "EndpointID": "",
      "Gateway": "",
      "GlobalIPv6Address": "",
      "GlobalIPv6PrefixLen": 0,
      "IPAddress": "",
      "IPPrefixLen": 0,
      "IPv6Gateway": "",
      "MacAddress": "",
      "Networks": {
        "ix-nextcloud_default": {
          "IPAMConfig": null,
          "Links": null,
          "Aliases": [
            "ix-nextcloud-nextcloud-1",
            "nextcloud"
          ],
          "MacAddress": "02:42:ac:10:05:04",
          "DriverOpts": null,
          "NetworkID": "20d12283311970a7f1cec14c8957ccd15043b6f6eea6c9e292a4f5e302287713",
          "EndpointID": "0a51674ffc7653b7da9777bdd6994b8dfd69cc303c577e07dce2cba4ebafb33c",
          "Gateway": "172.16.5.1",
          "IPAddress": "172.16.5.4",
          "IPPrefixLen": 24,
          "IPv6Gateway": "",
          "GlobalIPv6Address": "",
          "GlobalIPv6PrefixLen": 0,
          "DNSNames": [
            "ix-nextcloud-nextcloud-1",
            "nextcloud",
            "b08cb275a0eb"
          ]
        }
      }
    }
  }
]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants