I rebooted, any way to go back in the recording to...
# workshop-infrastructure-platform-engineering
d
I rebooted, any way to go back in the recording to see the commands I needed to run?
d
Found it, thanks
not sure if it was windows, docker, zoom, or a combination but it used 100 cpu for 5 minutes and I couldn't run anything
What is the powershell / windows equiv of this?
Copy code
export HUMANITEC_ORG=<my-org-id>
or is this one of those wsl only things?
$Env:<variable-name>
d
but will it work in the scope in which the binary runs?
r
hm... I think the tutorial suggests that the Humantic tutorial should be setting the env var on the local cli and then running docker from your machine as well.
Copy code
docker run --rm -it -h 5min-idp --name 5min-idp --pull always \
  -e HUMANITEC_ORG \
  -v hum-5min-idp:/state \
  -v $HOME/.humctl:/root/.humctl \
  -v /var/run/docker.sock:/var/run/docker.sock \
  --network bridge \
  <http://ghcr.io/humanitec-tutorials/5min-idp|ghcr.io/humanitec-tutorials/5min-idp>
d
I think I am in business
Copy code
# backticks for line breaks in powershell
docker run --rm -it -h 5min-idp --name 5min-idp --pull always `
  -e HUMANITEC_ORG `
  -v hum-5min-idp:/state `
  -v $HOME/.humctl:/root/.humctl `
  -v /var/run/docker.sock:/var/run/docker.sock `
  --network bridge `
  <http://ghcr.io/humanitec-tutorials/5min-idp|ghcr.io/humanitec-tutorials/5min-idp>
r
Noice!
d
Wunderschön