cschlaefcke
cschlaefcke
I am wondering that this does not already exist. I just started playing around with the Bob Swift CLI plugins for Bamboo and Confluence and would like to see OAuth...
I will have a look in the Atlassian/Bob Swift eco system in order to find out if there is already something suggested...
Anyone interested in this feature should vote on this [issue (ACLI-191)](https://bobswift.atlassian.net/browse/ACLI-191)!
I am also running into this issue - after first startup of borgwarehouse I encounter this `2024-12-29T19:57:32.434896+00:00 sshd @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 2024-12-29T19:57:32.434911+00:00 sshd @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ 2024-12-29T19:57:32.434914+00:00 sshd...
I try to run borgwarehouse on my Synology as a Docker Container with the image from docker hub using the default uid/guid (1001:1001) which maps to a user and group...
when I try to start sshd in the running docker container with the default user (1001:1001) I get this: ```# docker exec -ti borgwarehouse bash borgwarehouse@30b605c308c4:~/app$ /etc/init.d/ssh start mkdir: cannot...
and when I connect to the container with user = root sshd starts up as expected: ```# docker exec -u root -ti borgwarehouse bash root@30b605c308c4:/home/borgwarehouse/app# /etc/init.d/ssh start Starting OpenBSD Secure...
... it seem to me that sshd is not designed to be run as non-root user. See [here](https://stackoverflow.com/questions/61225511/run-the-sshd-with-supervisord-in-a-docker-ubuntu-container-with-non-root-user) and [here](https://stackoverflow.com/questions/72351849/dockerfile-how-to-run-the-ssh-server-in-my-container-image-as-non-root-user/78438415#78438415) for details and hints
> until [#401](https://github.com/Ravinou/borgwarehouse/pull/401) is resolved, is there a workaround for this? I seem to be experiencing the same issue Configuring Open-SSH to use a non-root Port (e.g. 22222) is currently...
you need to make sure that you have the .env file setup correctly. ``` # Host port mappings WEB_SERVER_PORT=3000 SSH_SERVER_PORT=22222 ``` And in the docker-compose.yml you need this: ``` env_file:...