-
How to use GitHub
Steps to reproduce
Expected behaviorContainers should start properly (like Portainer) Actual behaviorContainers fails with messages: Host OSNAME="Linux Mint"
VERSION="21 (Vanessa)"
ID=linuxmint
ID_LIKE="ubuntu debian"
PRETTY_NAME="Linux Mint 21"
VERSION_ID="21"
HOME_URL="https://www.linuxmint.com/"
SUPPORT_URL="https://forums.linuxmint.com/"
BUG_REPORT_URL="http://linuxmint-troubleshooting-guide.readthedocs.io/en/latest/"
PRIVACY_POLICY_URL="https://www.linuxmint.com/"
VERSION_CODENAME=vanessa
UBUNTU_CODENAME=jammyNextcloud AIO version
Current channelOther valuable info |
Beta Was this translation helpful? Give feedback.
Replies: 13 comments 23 replies
-
|
Can you run |
Beta Was this translation helpful? Give feedback.
-
|
All right! Please try this one then: (I've adjusted |
Beta Was this translation helpful? Give feedback.
-
|
all right, then I don*t have many ideas what could be the problem. It works over here without any problem. I can only suggest to switch to "normal" docker and to not use docker Desktop for this as it is much easier with "normal" docker. Apart from that I've found this for you: https://docs.docker.com/desktop/faqs/linuxfaqs/#how-do-i-enable-file-sharing |
Beta Was this translation helpful? Give feedback.
-
|
But I have one idea left. Could you try this one? |
Beta Was this translation helpful? Give feedback.
-
|
Just wanted to leave a code pointer here but no idea why it fails on you: all-in-one/Containers/mastercontainer/start.sh Lines 17 to 50 in 3091135 |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
-
|
Had the same problem. The answer #485 helped. Installed docker using the recommended method and everything works fine. |
Beta Was this translation helpful? Give feedback.
-
|
I have the same issue: Docker was installed using The Here is more diagnostics: I'm starting AIO with following docker-compose: services:
caddy:
image: caddy:alpine
restart: unless-stopped
container_name: caddy
volumes:
- /srv/fast/caddy/Caddyfile:/etc/caddy/Caddyfile
- /srv/fast/caddy/certs:/certs
- /srv/fast/caddy/config:/config
- /srv/fast/caddy/data:/data
- /srv/fast/caddy/sites:/srv
- /mnt/ssl:/mnt/ssl
network_mode: "host"
nextcloud:
image: nextcloud/all-in-one:latest
restart: unless-stopped
container_name: nextcloud-aio-mastercontainer
ports:
- "8080:8080"
environment:
- APACHE_PORT=11000
- NEXTCLOUD_DATADIR="/srv/fast/ncdata"
- NEXTCLOUD_MEMORY_LIMIT=2048M
- nextcloud_aio_mastercontainer:/mnt/docker-aio-config
- /var/run/docker.sock:/var/run/docker.sock:ro
depends_on:
- caddy
volumes:
nextcloud_aio_mastercontainer:I wonder why do we mount the |
Beta Was this translation helpful? Give feedback.
-
|
in my MacBook I changed --volume /var/run/docker.sock:/var/run/docker.sock:ro to |
Beta Was this translation helpful? Give feedback.
-
|
I might have found a solution to this! |
Beta Was this translation helpful? Give feedback.
-
|
Possibly this would have helped: |
Beta Was this translation helpful? Give feedback.
-
|
2025-05-19
brian@ServerUPro:~$ sudo docker run --sig-proxy=false --name nextcloud-aio-mastercontainer --restart always --pu |
Beta Was this translation helpful? Give feedback.
-
|
Since the update to the nextcloud-aio container from a few days ago, I now have the same error on my Synology NAS and I have found the problem in my case. To figure it out, I read /start.sh and saw that it runs "docker info" to see if the socket works. If it doesn't, it gives that error. To check what happened, I tried the docker run command with the extra options So obviously, docker on my NAS is too old. But it doesn't look like I can upgrade it. So my question is now: how can I get a version of nextcloud aio that uses the older docker? |
Beta Was this translation helpful? Give feedback.
This needs to be fixed in Docker Desktop unfortunately.
See docker/for-win#13447 and docker/for-mac#6823