+# Load image:
+docker image load -i tsan11-tsan11rec-image.tar.gz
+
+# Create the container:
+docker create -it --name tsan11-tsan11rec-container tsan11-tsan11rec-image:asplos
+
+# Start the container
+docker start -ia tsan11-tsan11rec-container
+
+# To find the IP address of the container:
+$ docker inspect tsan11-tsan11rec-container
+
+# Then use scp to copy the scripts directory in the tsan11-tsan11rec-docker repository to the container (replace 172.17.0.2 by the container’s IP address):
+$ scp -i insecure\_key -r scripts root@172.17.0.2:/data
+
+# Logging into the container as root (replace 172.17.0.2 by the container’s IP address):
+$ ssh -i insecure\_key root@172.17.0.2