Coming across a reoccurring issue deploying app to...
# general
b
Coming across a reoccurring issue deploying app to digitalocean. Seems like an easy fix but I've tried every variant I can think of and no success. Any ideas? Here's the issue: digitaloceanindexApp (loan-monitor): error: 1 error occurred: * Error creating App: POST https://api.digitalocean.com/v2/apps: 404 (request "6f3325a0-4668-46f4-94a7-39e0781a2f3b") Image tag or digest not found here's the code:
const app = new <http://digitalocean.App|digitalocean.App>(
"loan-monitor",
{
projectId: project.id,
spec: {
name: "loan-monitor",
region: digitalocean.Region.NYC3,
services: [
{
name: "loan-monitor",
instanceCount: 1,
instanceSizeSlug: "basic-xxs",
image: {
repository: "registry/loan-monitor",
registryType: "DOCR",
tag: imageTag,
},
},
],
envs: [
{ key: "PROCESS_LOANS_URL", value: processLoansUrl },
{ key: "PROVIDER", value: providerUrl },
{ key: "GRAPH_API_KEY", value: graphApiKey },
],
},
},
{ dependsOn: [registry] }
);
No thoughts?