Default services name when using Dependency Proxy
Consider the below and https://docs.gitlab.com/ee/ci/docker/using_docker_images.html#accessing-the-services :
services:
- name: gitlab.foo.com/foo/dependency_proxy/containers/mysql:5.6
Is it expected that the service name will change from mysql
? If yes, I think it could be helpful if the Dependency Proxy documentation pointed out that you'll need to specify:
alias: mysql
Personally I think given gitlab.foo.com/foo/dependency_proxy/containers/mysql:5.6
is an alias of mysql:5.6
, GitLab should be smart enough to strip the dependency proxy URL from the name.