Docker install Ubuntu 22.04 #881
Unanswered
factor200x
asked this question in
Getting Help
Replies: 2 comments 2 replies
-
Problem is with permissions. You can use sudo docker-compose up |
Beta Was this translation helpful? Give feedback.
2 replies
-
Hi looks more like a filesystem error to me. The error message is actually quite clear. Ubuntu 22.04 mounts the root disk read only when filesystem errors occur. The behavior can be found in root@redacted:~# findmnt /
TARGET SOURCE FSTYPE OPTIONS
/ /dev/vda1 ext4 rw,relatime,discard,errors=remount-ro See man mount(8)
But maybe the read-only mounting has other reasons. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I have installed a VM with Ubuntu 22.04 under Proxmox and have done the installation of Netplan (Docker) as described here (https://github.com/netbox-community/netbox-docker/wiki/Getting-Started).
When starting via docker-compose up I get the following output:
`Creating network "netbox-docker_default" with the default driver
Creating volume "netbox-docker_netbox-media-files" with local driver
Creating volume "netbox-docker_netbox-postgres-data" with local driver
Creating volume "netbox-docker_netbox-redis-data" with local driver
Creating volume "netbox-docker_netbox-redis-cache-data" with local driver
Creating netbox-docker_redis-cache_1 ... done
Creating netbox-docker_redis_1 ... done
Creating netbox-docker_postgres_1 ... done
Creating netbox-docker_netbox-housekeeping_1 ...
Creating netbox-docker_netbox-worker_1 ... error
Creating netbox-docker_netbox-housekeeping_1 ... error tem
ERROR: for netbox-docker_netbox-housekeeping_1 Cannot start service netbox-housekeeping: error while creating mount source path '/inst/netbox-docker/configuration': mkdir /inst: read-only file system
ERROR: for netbox-worker Cannot start service netbox-worker: error while creating mount source path '/inst/netbox-docker/scripts': mkdir /inst: read-only file system
ERROR: for netbox-housekeeping Cannot start service netbox-housekeeping: error while creating mount source path '/inst/netbox-docker/configuration': mkdir /inst: read-only file system
ERROR: Encountered errors while bringing up the project.`
A search on the net for this problem was unfortunately unsuccessful. I would be very grateful if someone could give me a hint what I did wrong.
Thanks
Olaf
Beta Was this translation helpful? Give feedback.
All reactions