diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -40,7 +40,7 @@ task bench VERSION="$(cat VERSION)" \ COMMIT="$(git rev-parse --short HEAD)" \ BUILD_DATE="$(date -u +%Y-%m-%dT%H:%M:%SZ)" \ -docker compose -f docker-compose.yml -f docker-compose.dev.yml up --build +docker compose -f docker-compose.yaml up --build ``` Compose build args are read from environment variables (`VERSION`, `COMMIT`, `BUILD_DATE`). @@ -57,7 +57,7 @@ docker build \ In another terminal, generate the mirror signing key inside the running container: ```bash -docker compose -f docker-compose.yml -f docker-compose.dev.yml exec plutia /app/plutia keygen --out=/var/lib/plutia/mirror.key +docker compose -f docker-compose.yaml exec plutia /app/plutia keygen --out=/var/lib/plutia/mirror.key ``` Verify checkpoint and proof endpoints: @@ -213,7 +213,7 @@ See [`config.default.yaml`](./config.default.yaml). All supported config keys: Config files are optional. If `--config` points to a missing file, Plutia falls back to internal defaults and then applies any `PLUTIA_*` environment overrides. -### Example `docker-compose.yml` +### Example `docker-compose.yaml` ```yaml services: |