No machines in group app, launching one new machine Error: error creating a new machine: failed to launch VM: To create more than 1 machine per app please add a payment method.

I’m having this problem deploying one app in Django and Docker. I don’t have any application or machine, and the error says that I have two machines. I don’t know if there is an error on Fly.io or you’re no longer given free access to develop an app.

app = “parchateapp”
kill_signal = “SIGINT”
kill_timeout = 5
primary_region = “bog”

[env]
PORT = “8000”

[[services]]
protocol = “tcp”
internal_port = 8000
processes = [“app”]

[[services.ports]]
port = 80
handlers = [“http”]
force_https = true

[[services.ports]]
port = 443
handlers = [“tls”, “http”]

[services.concurrency]
type = “connections”
hard_limit = 1
soft_limit = 1

[services.resources]
cpu = “100m”
memory = “128Mi”

Hi @thealejo97!. So by default, deploying an app enables the --ha flag, which “Create spare machines that increases app availability (default true)”. Try deploying again, with --ha=false.

1 Like