docs: simplify docker run command (#1168)
Some checks failed
Lint Code Base / Lint Code Base (push) Has been cancelled
Sanitizers / ${{ matrix.sanitizer }} (asan) (push) Has been cancelled
Sanitizers / ${{ matrix.sanitizer }} (msan) (push) Has been cancelled
Tests / tests (8.2) (push) Has been cancelled
Tests / tests (8.3) (push) Has been cancelled
Tests / tests (8.4) (push) Has been cancelled

This commit is contained in:
Djordje Lukic 2024-11-15 15:21:03 +01:00 committed by GitHub
parent a441e22a1b
commit fa64198d52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,7 +19,7 @@ FrankenPHP can also be used as a standalone Go library to embed PHP in any app u
### Docker
```console
docker run -v $PWD:/app/public \
docker run -v .:/app/public \
-p 80:80 -p 443:443 -p 443:443/udp \
dunglas/frankenphp
```