-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TASK] Fix permission issue during "ddev start"
- Loading branch information
Showing
4 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
|
||
ddev-initialize: | ||
stage: project-template-test | ||
image: ghcr.io/ochorocho/ddev-gitlab-ci:v1.23.1 | ||
image: ghcr.io/ochorocho/ddev-gitlab-ci:v1.23 | ||
variables: | ||
# Remove "umask 0000" usage, so DDEV has permissions on the cloned repository | ||
# see https://docs.gitlab.com/runner/configuration/feature-flags.html#available-feature-flags | ||
FF_DISABLE_UMASK_FOR_DOCKER_EXECUTOR: 1 | ||
services: | ||
- name: docker:dind | ||
when: always | ||
script: | ||
- sudo chown -R ddev:ddev /builds/ # Make it work without messing with the permissions | ||
- ddev --version | ||
# ... do things |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters