Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md: change docker-compose to docker compose because command syntax has changed #1998

Merged
merged 1 commit into from
Jul 23, 2024
Merged
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ Note: `main` is development version and reporting bugs against development versi
To run sync:

```
docker-compose run --rm plextraktsync sync
docker compose run --rm plextraktsync sync
```

The container will stop after the sync is completed. Read Setup section to run
Expand Down Expand Up @@ -263,7 +263,7 @@ Installing from GitHub is considered developer mode, and it's documented in

[ofelia]: https://github.com/mcuadros/ofelia/

A docker-compose example with a 6h interval:
A docker compose example with a 6h interval:

```yaml
version: "2"
Expand Down Expand Up @@ -468,7 +468,7 @@ compose, you can run them at the same time.
The above config means that a job is running every 6 hours, alternating between
the two "servers". The PlexTraktSync container also has a [docker compose
profile] called "schedule" which means that it won't run automatically when you
run for example `docker-compose up`.
run for example `docker compose up`.

[docker compose profile]: https://docs.docker.com/compose/profiles/

Expand Down Expand Up @@ -617,10 +617,10 @@ To run `watch` command:
or

```
docker-compose run --rm plextraktsync watch
docker compose run --rm plextraktsync watch
```

or add `command: watch` to docker compose file, and `docker-compose up -d
or add `command: watch` to docker compose file, and `docker compose up -d
plextraktsync` to start the container detached:

```yaml
Expand Down
Loading