Evgeny Agafonov

Results 28 comments of Evgeny Agafonov

MR: https://gitlab.com/dualbootpartners/idyl/uffizzi_app/-/merge_requests/1042

MR: https://gitlab.com/dualbootpartners/idyl/uffizzi_app/-/merge_requests/1058/diffs

@gadkins What do you think about this method of determining volumes: For example user have compose file like this: ``` services: web: image: my_web_service nginx: image: nginx volumes: - ./images:/image_volumes...

Why we should use some additional things for volumes. There are three types of volumes: 1. Anonymous volumes `- /var/some_folder` - it's very easy 2. Named volumes `- data:/var/some_folder` -...

By now we updated design of `x-uffizzi-volume-host`: ``` x-uffizzi-volume-host: service: web root_path: /app ``` `service` - this is the name of the service that is the source of the files...

MR: https://github.com/UffizziCloud/uffizzi_app/pull/90/files

@jpthurman @axisofentropy @gadkins After long discussion was find 2 variants how we can implement this: ### 1. With addition extra config item ``` x-uffizzi-volumes: service: ${main_service} root_path: ${path_to_project_directory_into_container} ``` For...

@axisofentropy > Maybe they can even pull files directly from GitHub so we don't have to store them? But for opensource version we do not use github

@gadkins @axisofentropy There is one more question about anonymous volume like: ``` volumes: - /var/log ``` Should we implement this type volumes in this issue? Should this type volume save...