Skip to content

Commit

Permalink
docs: use new docker compose command (#3054)
Browse files Browse the repository at this point in the history
Improve the Docker install documentation, along with the `docker
compose` commands.
libretime/libretime@70735d4
  • Loading branch information
libretime-bot committed Jul 6, 2024
1 parent c7826da commit fc0b7f1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/admin-manual/install/install-using-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ First, set the version you want to install:
echo LIBRETIME_VERSION="{vars.version}" > .env
</CodeBlock>

Download the docker-compose files from the repository:
Download the docker compose files from the repository:

```bash
# Load LIBRETIME_VERSION variable
Expand Down Expand Up @@ -106,16 +106,16 @@ You can find more details in the `docker-compose.yml` file or on the external se
Next, run the following commands to setup the database:

```bash
docker-compose run --rm api libretime-api migrate
docker compose run --rm api libretime-api migrate
```

Finally, start the services, and check that they're running using the following commands:

```bash
docker-compose up -d
docker compose up -d

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

## Securing LibreTime
Expand Down

0 comments on commit fc0b7f1

Please sign in to comment.