Skip to content

Commit

Permalink
chore: update docker compose commands (#3132)
Browse files Browse the repository at this point in the history
### Description

Upstream has renamed docker-compose to docker compose for all commands

**This is a new feature**:

_Do the changes in this PR implement a new feature?_

**I have updated the documentation to reflect these changes**:

Yes
libretime/libretime@6f52751
  • Loading branch information
libretime-bot committed Jan 9, 2025
1 parent d02a9a9 commit 812da41
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/contributor-manual/development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ To setup a docker-compose development environment, run the following commands:
# Clean and build
make clean
cp .env.dev .env
DOCKER_BUILDKIT=1 docker-compose build
DOCKER_BUILDKIT=1 docker compose build

# Setup
make dev-certs
docker-compose run --rm legacy make build
docker-compose run --rm api libretime-api migrate
docker compose run --rm legacy make build
docker compose run --rm api libretime-api migrate

# Run
docker-compose up -d
docker-compose logs -f
docker compose up -d
docker compose logs -f
```

:::info
Expand All @@ -33,7 +33,7 @@ You may also use the following `make clean dev` shortcut:
```bash
make clean dev

docker-compose logs -f
docker compose logs -f
```

:::
Expand Down

0 comments on commit 812da41

Please sign in to comment.