Open
Description
On the create an app section we have the following command:
flyctl launch --name gogs-server --image gogs/gogs --org dwyl
This will create a new Fly app with the gogs image, (I guess from https://hub.docker.com/r/gogs/gogs).
However the fly.toml
also contains in the build section the gogs image:
Lines 12 to 13 in 5e434c7
So could we instead of using the --image gogs/gogs
flag, just run
flyctl launch --name gogs-server --org dwyl
We could also not pass the --org
flag and let the command line ask later on the launch step I think.