Hey, I am trying to setup a local installation on octopus for learning and testing. I have setup a Ubuntu VM on Proxmox (Type 1 Hypervisor) with docker and docker-compose installed. I am following this article: Octopus Server Container with Docker Compose | Documentation and Support.
Now I am trying to run a “process” which involves running script on a UbuntuWorker docker container.
Using CONTAINER_USER=octopus
gives error:
/var/run/docker.sock: connect: permission denied
while its trying to pull the worker container image.
Using CONTAINER_USER=root
gives error:
docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: "/root/.octopus/OctopusServer/Server/Tools/Calamari.linux-x64/25.5.9-hotfix0001/Calamari": stat /root/.octopus/OctopusServer/Server/Tools/Calamari.linux-x64/25.5.9-hotfix0001/Calamari: no such file or directory: unknown.
I see the above mentioned path is indeed not present. /root/.octopus/OctopusServer/Server/
is present, but .../Server
contains only one dir Work
Can someone tell what I am doing wrong?