# -*- sh -*- podman pull $IMAGE &>/dev/null # Test various HostConfig options tmpfs_name="/mytmpfs" t POST containers/create?name=hostconfig_test '"Image":"'$IMAGE'","Cmd":["df"],"HostConfig":{"Binds":["/tmp/doesnotexist:/test1"],"TmpFs":{"'$tmpfs_name'":"rw"}}' 201 \ .Id~[0-9a-f]\\{64\\} cid=$(jq -r '.Id' <<<"$output") # Prior to #9512, the tmpfs would be called '/mytmpfs=rw', with the '=rw' t GET containers/${cid}/json 200 \ .HostConfig.Tmpfs[\"${tmpfs_name}\"]~rw, # Run the container, verify output t POST containers/${cid}/start '' 204 t POST containers/${cid}/wait '' 200 t GET containers/${cid}/logs?stdout=true 200 like "$(<$WORKDIR/curl.result.out)" ".* ${tmpfs_name}" \ "'df' output includes tmpfs name"