RADIUSdesk

logo

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
getting_started:docker_image [2022/10/04 20:38]
admin [Create the Docker containers]
getting_started:docker_image [2023/04/19 10:54] (current)
admin [Create the Docker containers]
Line 49: Line 49:
 <code bash> <code bash>
 cd rdcore/docker cd rdcore/docker
 +sudo mkdir rdcore
 sudo mount --bind ../../rdcore ./rdcore sudo mount --bind ../../rdcore ./rdcore
 </code> </code>
Line 56: Line 57:
 </code> </code>
   * There will be feedback on the screen as the two docker containers getting built.   * There will be feedback on the screen as the two docker containers getting built.
 +
 +<WRAP center round important 100%>
 +  * On my one Ubuntu machine I got an error message about
 +//docker-credential-desktop not installed or not available in PATH//
 +  * The cure was to edit **~/.docker/config.json** and replace **"credsStore"** by **"credStore"**.
 +<code javascript>
 +{
 +        "auths": {},
 +        "credStore": "desktop",
 +        "currentContext": "default"
 +}
 +</code>
 +</WRAP>
 +
   * After it completed you can confirm it is running   * After it completed you can confirm it is running
 <code bash> <code bash>