Trying to get docker:dind to work on Gitlab CI

At the moment Gitlab CI is failing because it's unable to find the docker service
This commit is contained in:
Arpit Mohan 2020-03-11 16:38:56 +05:30
parent edd4d7c362
commit c428032a8b

View File

@ -60,6 +60,8 @@ cypress-test:
docker-package-release:
image: docker:dind
services:
- docker:dind
stage: package
script:
- docker build --build-arg REACT_APP_ENVIRONMENT=STAGING --build-arg GIT_SHA=$CI_COMMIT_SHORT_SHA -t appsmith/appsmith-editor:release .
@ -70,6 +72,8 @@ docker-package-release:
docker-package-prod:
image: docker:dind
services:
- docker:dind
stage: package
script:
- docker build --build-arg REACT_APP_ENVIRONMENT=PRODUCTION --build-arg GIT_SHA=$CI_COMMIT_SHORT_SHA -t appsmith/appsmith-editor:latest .