- This topic has 1 reply, 2 voices, and was last updated 1 week ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Forums › FABRIC Announcements › FABRIC is back online with exciting new features!
We’re pleased to announce that the FABRIC maintenance is complete, and the testbed is now open and ready for your experiments!
This update brings several exciting new features, including:
To learn more about all the improvements, check out the full release notes.
Thank you for your patience during the maintenance period. We can’t wait to see the incredible experiments you create!
Best regards,
I’m trying out the new docker_ubuntu_24
OS image and the updated docker_ubuntu_22
OS image, and noticed three issues:
docker build
is using the legacy Docker builder that has been deprecated. Package docker-buildx-plugin
should be included in the image.docker compose
command is missing. Compose is commonly used in Docker based applications including some fablib examples (they are currently using docker_rocky_8
or manually installing Compose). Package docker-compose-plugin
should be included in the image.docker_ubuntu_22
image, the ubuntu
user is not added to the docker
group, so that the Docker socket is inaccessible without using sudo. The user should be added to the group, and then fablib examples that contain sudo docker
should be revised.