I have created a new volume for my api where i add the following to the fly.toml
app = “blogapi1200”
primary_region = “ewr”
[build]
[mounts]
source=“myapp_data”
destination=“/uploads”
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
processes = [“app”]
[[vm]]
cpu_kind = “shared”
cpus = 1
memory_mb = 1024
when i run fly deploy i get the following error:
Process group ‘app’ needs volumes with name ‘myapp_data’ to fullfill mounts defined in fly.toml; Run fly volume create myapp_data -r REGION -n COUNT
which i have run and if i go to my dashboard the volume is there with the proper name but everytime i run fly deploy I get the same error and the volume will not attach