A fully set up Rust environment, based on Ubuntu.
45
A fully set up Rust environment, which relies on Ubuntu as the base image, to provide a fast and portable testing/ development environment for Rust.
The container is in an infinite loop, so it's better to run it in detached mode with the -d flag.
An example command to pull the image and run the container in detached mode would be:
docker run -d --name rust_sandbox alexpfaller/rust:1.0.0
To check if the container is running successfully in the background, execute docker ps, if you are NOT able to find it there, execute docker ps -a and check if it exited.
To attach your terminal to a process in the container, simply run the following command:
docker exec -it rust_sandbox /bin/bash
Content type
Image
Digest
sha256:a4ac5f256…
Size
388.3 MB
Last updated
about 4 years ago
docker pull alexpfaller/rust:1.0.0