Skip to content

Commit

Permalink
Replace all mentions of docker-compose to docker compose (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
VitaliySerov authored Aug 9, 2024
1 parent 481acab commit d93f9a3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: rubocop
- name: run unit tests
run: bundle exec rspec spec/unit --fail-fast
- name: Start services in docker-compose
run: docker-compose up -d
- name: Start services in docker compose
run: docker compose up -d
- name: run integration tests
run: bundle exec rspec spec/integration --fail-fast
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

* Fix several issues found by `hadolint` integration.

### Changes

* Replace all mentions of `docker-compose` to `docker compose`

## 0.2.0 (2024-06-21)

### New Features
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

Change dockerfile: need to add `SECRET_TOKEN` and `BUGZILLA_API_KEY`

Or from docker-compose
Or from `docker compose`

```shell
docker-compose up -d
docker compose up -d
```

There are easy way to update warden if you use docker-compose
There are easy way to update warden if you use `docker compose`

```shell
docker-compose up --build -d
docker compose up --build -d
```

Don't forget to change important variables from docker_compose file:
Expand Down Expand Up @@ -59,7 +59,7 @@ This process consists or three steps:
2. Update backend service, what running on one of our servers.
Only server administrators can do that.
3. On repository side - new WebHook registration is required.
Go to `Settings` -> `Webhooks` -> `Add webhook` and
Go to `Settings` -> `Webhooks` -> `Add webhook` and
fill form like on screenshot below:

![Webhook settings screenshot](https://github.com/ONLYOFFICE-QA/testing-github-warden/assets/154601125/2bde6cc2-ccc4-48d6-978a-f3fa2ac595fb "Webhook settings screenshot")
Expand Down Expand Up @@ -107,7 +107,7 @@ repository_name_array must be array, branch_pattern must be regexp
Run server and tests in same keys:

```bash
SECRET_TOKEN='1234' BUGZILLA_API_KEY='<api key>' docker-compose up -d
SECRET_TOKEN='1234' BUGZILLA_API_KEY='<api key>' docker compose up -d
SECRET_TOKEN='1234' BUGZILLA_API_KEY='<api key>' bundle exec rspec spec/tests/
```

Expand Down

0 comments on commit d93f9a3

Please sign in to comment.