Pull access denied for openremote/deployment, repository does not exist or may require 'docker login': denied: requested access to the resource is denied

Hello,
Trying to setup a custom deployment on a VPS after running :
" OR_ADMIN_PASSWORD=xxxxxxxxx OR_HOSTNAME=xxxxx.com docker-compose -p custom up -d"
I get this error :
ERROR: pull access denied for openremote/deployment, repository does not exist or may require ‘docker login’

Any hint?

Hi,

Can you share your docker-compose.yml?

Hello, I think openremote/deployment container was removed from the docker hub.
A non custom deployment , It is Done correctly .
Unfortunately I can’t post docker-compose.yml iuntill tomorrow .
Thanks for the reply

I did a new fresh start and worked … but now I can’t Customize it

OpenRemote v3

Profile that runs the stack by default on https://localhost using a self-signed SSL certificate,

but optionally on https://$OR_HOSTNAME with an auto generated SSL certificate from Letsencrypt.

It is configured to use the AWS logging driver.

version: ‘2.4’

volumes:
proxy-data:
manager-data:
postgresql-data:

services:

proxy:
image: openremote/proxy:${PROXY_VERSION:-latest}
restart: always
depends_on:
manager:

^G Get Help ^O Write Out ^W Where Is ^K Cut Text ^J Justify ^C Cur Pos M-U Undo
^X Exit ^R Read File ^\ Replace ^U Paste Text ^T To Spell ^_ Go To Line M-E Redo
GNU nano 4.8 docker-compose.yml
KEYCLOAK_ADMIN_PASSWORD: ${OR_ADMIN_PASSWORD:-secret}
KC_HOSTNAME: ${OR_HOSTNAME:-ssd.alinea.com.do}
KC_HOSTNAME_PORT: ${OR_SSL_PORT:–1}

manager:

privileged: true

restart: always
image: openremote/manager:${MANAGER_VERSION:-latest}
depends_on:
  keycloak:
    condition: service_healthy
ports:
  - "127.0.0.1:8405:8405" # Localhost metrics access
environment:
  OR_SETUP_TYPE:
  OR_ADMIN_PASSWORD:
  OR_SETUP_RUN_ON_RESTART:
  OR_EMAIL_HOST:
  OR_EMAIL_USER:
  OR_EMAIL_PASSWORD:
  OR_EMAIL_X_HEADERS:
  OR_EMAIL_FROM:
  OR_EMAIL_ADMIN:
  OR_METRICS_ENABLED: ${OR_METRICS_ENABLED:-true}
  OR_HOSTNAME: ${OR_HOSTNAME:-ssd.alinea.com.do}
  OR_ADDITIONAL_HOSTNAMES:
  OR_SSL_PORT: ${OR_SSL_PORT:--1}
  OR_DEV_MODE: ${OR_DEV_MODE:-false}

  # The following variables will configure the demo
  OR_FORECAST_SOLAR_API_KEY:
  OR_OPEN_WEATHER_API_APP_ID:
  OR_SETUP_IMPORT_DEMO_AGENT_KNX:
  OR_SETUP_IMPORT_DEMO_AGENT_VELBUS:
volumes:
  - manager-data:/storage

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.