Docker and Incus Issue

Hi- I am running an Incus host on Ubuntu 22.04.4 LTS and will migrate to a Debian 12 host at some point.

I created a Debian 12 container and set the typical configuration flags for docker:

security.nesting: “true”
security.syscalls.intercept.mknod: “true”
security.syscalls.intercept.setxattr: “true”

I ran the docker hello world and a couple of other container which all seemed fine.

However, I am getting the following errors on a couple of containers including the image below:

Error I have gotten on few containers:

s6-ipcserver-socketbinder: fatal: unable to create socket: Permission denied

Not sure if it related to AppArmour and the below in the docker compose
seccomp:unconfined

Docker Compose


services:
libreoffice:
image: lscr.io/linuxserver/libreoffice:latest
container_name: libreoffice
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /docker/data/libreoffice/config:/config
ports:
- 3000:3000
- 3001:3001
restart: unless-stopped