diff --git a/.github/workflows/pimcore-skeleton.yml b/.github/workflows/pimcore-skeleton.yml index 42347916f..8755426ec 100644 --- a/.github/workflows/pimcore-skeleton.yml +++ b/.github/workflows/pimcore-skeleton.yml @@ -69,7 +69,7 @@ jobs: cd sample-project/ # Set up docker-compose.yaml to use current user's uid:gid, just like README.md suggests. - sed -i "s|#user: '1000:1000'|user: '$(id -u):$(id -g)'|g" docker-compose.yaml + sed -i "s|#user: '1000:1000'|user: '$(id -u):$(id -g)'|g" compose.yaml # Start containers docker compose pull --quiet diff --git a/README.md b/README.md index 15c172f3c..ea43a41c7 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ You don't need to have a PHP environment with composer installed. `cd my-project/` 3. Part of the new project is a docker compose file - * Run `sed -i "s|#user: '1000:1000'|user: '$(id -u):$(id -g)'|g" docker-compose.yaml` to set the correct user id and group id. + * Run `sed -i "s|#user: '1000:1000'|user: '$(id -u):$(id -g)'|g" compose.yaml` to set the correct user id and group id. * Start the needed services with `docker compose up -d` 4. Install pimcore and initialize the DB diff --git a/docker-compose.yaml b/compose.yaml similarity index 100% rename from docker-compose.yaml rename to compose.yaml