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:
parent
edd4d7c362
commit
c428032a8b
|
|
@ -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 .
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user