a
We use
RUN curl -sL https://get.garden.io/install.sh | bash
in a Dockerfile for a dev container, and our full stack is defined using garden modules (now removed). We don't have time to refactor our code base to 0.13 right now, so we're wondering how do we install the old 0.12?
b
Hey @average-painter-87026 please find the options to move to 0.12 in this message https://discord.com/channels/817392104711651328/1078632412457734264/1114184772751736905
a
Thanks. I dug into the install script and found you can pass the version in as first arg too so I'm using that:
Copy code
curl -sL https://get.garden.io/install.sh | bash -s -- 0.12.56
b
Yes, that too. If someone already installed garden 0.13 they can also just run garden self-update edge-acorn To get 0.12
53 Views