I’m trying to deploy a dockerized application, and I want flyctl to recognize my application as a docker application and not as a django application. Is this possible?
What I don’t want:
$ fly launch
Scanning source code
Detected a Django app
...
I’m trying to deploy a dockerized application, and I want flyctl to recognize my application as a docker application and not as a django application. Is this possible?
What I don’t want:
$ fly launch
Scanning source code
Detected a Django app
...
Not currently. But perhaps you don’t need fly launch?
Oversimplifying, fly launch does the following:
fly apps createDockerfile (which you already have)fly.toml (the only update you will generally need is the app = line)fly deployDepending on your needs, fly launch can do more (like create a postgres db, but that too can be done via fly postgres create
Thanks for responding! I’m new to fly.io and did not know where to start, and the tutorials I found said to use fly launch (Deploy via Dockerfile · Fly Docs, Django on Fly.io · Fly Docs). I did need it to create the postgres database, and to create the fly.toml file, and now I have those. I’ll look into fly deploy then, for the next step.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.