We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sftp-user-inventory
I need that all directories must be created with a specific GID.
Actually, the sftp-user-inventory group is created with a default “user” GID : https://github.com/emberstack/docker-sftp/blob/main/src/ES.SFTP/Security/UserManagementService.cs#L38
For the moment, I have overridden the compose entrypoint like this:
entrypoint
entrypoint: | /bin/bash -c " grep -q '^sftp-user-inventory:' /etc/group \\ || echo 'sftp-user-inventory:x:100:' >> /etc/group exec tini -- dotnet ES.SFTP.dll "
Nice to have: an option to set a specific GID for this group.
Otherwise: the directories must be created with the GID of the user specified in the configuration instead of the sftp-user-inventory GID...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I need that all directories must be created with a specific GID.
Actually, the
sftp-user-inventory
group is created with a default “user” GID :https://github.com/emberstack/docker-sftp/blob/main/src/ES.SFTP/Security/UserManagementService.cs#L38
For the moment, I have overridden the compose
entrypoint
like this:Nice to have: an option to set a specific GID for this group.
Otherwise: the directories must be created with the GID of the user specified in the configuration instead of the
sftp-user-inventory
GID...The text was updated successfully, but these errors were encountered: