SelfhostedPro

Results 98 comments of SelfhostedPro

https://docker-py.readthedocs.io/en/stable/containers.html It doesn’t look like it would be too difficult to add this in. Should I add the group_add directive as well? Good catch, I didn’t even know this was...

Does it work if you use `docker login` inside the yacht container (don't know if you were doing it inside the container or on the host). I'll take a look...

Awesome, Thanks! I'll let you know when it's in devel and ready for testing.

There is unfortunately no way to tell which variables are set by the user and which ones are set in the image. The docker API treats them all the same....

There is no information in Yacht not pulled directly from the docker API in relation to containers as that would cause consistency issues when working with containers not created in...

It cannot as the docker API provides no way to supply that information. This is all I can give the API: https://docker-py.readthedocs.io/en/stable/containers.html environment (dict or list) – Environment variables to...

I have opened an issue with docker about this to see if it's something they would consider. If not I can see about flagging these via labels but those would...

Yeah, I can do that with port labels. I understand that docker-py doesn't have the ability to do anything but seeing as it's a docker project I'm hoping the right...

The labels are specific to Yacht. If you look at how Port Labels work now you can see an example. It will be a label like yacht.user.env.VARIABLE_NAME=VARIABLE_VALUE and is able...

It's the only place where you can store data from the run command and although it may not be made for it, it solves the problem pretty well. I would...