Serhii Mudryk

Results 28 comments of Serhii Mudryk

Hi @kratsg, sorry for dalay, I don't see this problem in my docker containers even if they have been running for months and are heavily used. Could you please provide...

what do you mean altering, maybe is it removing file? i checked, method with zeroing file via: ``` printf "" > some.log ``` and then logging continues to work in...

oh, sorry 😄 I don’t think there is a need to build a rotation system into the program, I want to keep it simple as possible, and all the things...

Hi @ludopaquet, installing the auth-check independently for each command is not available. I want to keep the utility as simple as possible. And setup auth per-command will complicate the interface...

Hi @ludopaquet, sorry for the later answer. i still think that а simplicity is more important, and adding a separate endpoint, the authentication on which will be different from the...

hi @misery, sorry, don't quite understand what exactly the command `-init` does, just run shell command once on start? i think it's better to do it separately, for example in...

there is one solution: you can use [entrypoint](https://docs.docker.com/reference/compose-file/services/#entrypoint) in docker compose, and override default binary by own shell script like: ``` entrypoint: > apk install ... some init shell command...

hm yes, it doesn't working, it (`entrypoint`) seems to require the path to the binary file and not accept shell script. need to think, I don't like the idea of...