Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

Hi,
I am trying to use github actions to build and push to my container registry. The final step of my yml file is failing with this error:
denied: registry contains 1 repositories, limit is 1 Error: Process completed with exit code 1.
This is what the steps in the yml file look like:
steps:
- name: Update Docker settings
run: |
sudo sed -i 's/ }/, \"max-concurrent-uploads\": 2 }/' /etc/docker/daemon.json
sudo systemctl restart docker
- name: Checkout the repo
uses: actions/checkout@v3
- name: Build container image
run: docker build -t imagename .
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log in to DigitalOcean Container Registry with short-lived credentials
run: doctl registry login --expiry-seconds 600
- name: Tag container image
run: docker tag imagename registry.digitalocean.com/reponame/imagename
- name: Push image to DigitalOcean Container Registry
run: docker push registry.digitalocean.com/reponame/imagename
Anyone have any ideas?
Thanks,
Jason
a801cb8b3a534e9393a77f03f1df3e
66287897109f4be29207f5076c292d
Matthew Huang
komplettegal
marlonmckinnie
14e850cb773b484193b0e034669289
Matheus Robusti Henriques Marqui
Dmitrii Paivin
chris
atulgup
c1192def936b463dbf30a6928e695d
lynnna-xu