Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ If you are new to Pimcore, it's better to start with our demo package, listed be

## Getting started
```bash
COMPOSER_MEMORY_LIMIT=-1 composer create-project pimcore/skeleton my-project
COMPOSER_MEMORY_LIMIT=-1 composer create-project pimcore/skeleton my-project ">=2026" --no-scripts
cd ./my-project
./vendor/bin/pimcore-install --install-profile='App\Installer\SkeletonProfile'
```
Expand All @@ -28,14 +28,14 @@ You don't need to have a PHP environment with composer installed.

### Follow these steps
1. Initialize the skeleton project using the `pimcore/pimcore` image
``docker run -u `id -u`:`id -g` --rm -v `pwd`:/var/www/html pimcore/pimcore:php8.3-latest composer create-project pimcore/skeleton my-project``
`docker run -u `id -u`:`id -g` --rm -v `pwd`:/var/www/html pimcore/pimcore:php8.3-latest composer create-project pimcore/skeleton my-project ">=2026" --no-scripts`

2. Go to your new project
`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.
* Start the needed services with `docker compose up -d`
* Start the necessary services with `docker compose up -d`

4. Install pimcore and initialize the DB
`docker compose exec php vendor/bin/pimcore-install --install-profile='App\Installer\SkeletonProfile'`
Expand All @@ -51,7 +51,7 @@ You don't need to have a PHP environment with composer installed.
6. :heavy_check_mark: DONE - You can now visit your pimcore instance:
* The frontend: <http://localhost>
* The admin interface, using the credentials you have chosen above:
<http://localhost/admin>
<http://localhost/pimcore-studio/login>

## Pimcore Platform Version
By default, Pimcore Platform Version is added as a dependency which ensures installation of compatible and in combination
Expand Down
Loading