Pavol Noha

Results 144 comments of Pavol Noha
trafficstars

@amir-abdi On Swarmpit Agent side everything is TCP. Maybe docker overlay using some magic behind.

@umardraz you need to generate API token first in settings section of Swarmpit.

@umardraz You can't. To do that new build without FE part will be required.

Hi @wmwmw We're currently supporting version [3.3](https://github.com/swarmpit/swarmpit/blob/master/src/clj/swarmpit/docker/engine/mapper/compose.clj#L11) in current engine state. We have to introduce new features soon, as well as missing ones.

@cyppan Just using the credentials of "organization account" to link dockerhub registry account should be enough to list and fetch repository tags.

Yes correct. You have to link your user account with organization. Then you should login with your user account and all linked namespaces will be available for listing. E.g. `myuser`...

@cyppan Just out of curiosity: Did you link user to organization in dockerhub before linking in Swarmpit ? These namespaces are now fetched by Swarmpit during linking process only. We...

@cyppan Can you elaborate more on your dockerhub org account setup ? Basically i have `myuser` in both org under following team: I would like to simulate your setup. Team...

@cyppan You're right .. With member access you can't see linked namespaces (only yours). With owner access you can. Looks like the API used to fetch user namespaces is restricted...

``` curl --location --request POST 'https://hub.docker.com/v2/users/login' \ --header 'Content-Type: application/json' \ --data-raw '{ "username": "user", "password": "pass" }' ``` Returns JWT token which is then used for: ``` curl --location...