Skip to content

Commit 8f23d86

Browse files
committed
chore: update docker compose configuration
1 parent cbaab97 commit 8f23d86

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,9 @@ updates:
1313
- "opentelemetry*"
1414
- package-ecosystem: github-actions
1515
directory: /
16+
schedule:
17+
interval: monthly
18+
- package-ecosystem: docker-compose
19+
directory: /src/test/resources
1620
schedule:
1721
interval: monthly

demos/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ export ELASTIC_STACK_VERSION?=8.14.2
55

66
.PHONY: build
77
build:
8-
@env docker-compose --file docker-compose.yml build
8+
@env docker compose --file docker-compose.yml build
99

1010
.PHONY: start
1111
start:
12-
@env docker-compose --file docker-compose.yml up --detach --no-recreate
12+
@env docker compose --file docker-compose.yml up --detach --no-recreate
1313

1414
.PHONY: stop
1515
stop:
16-
@env docker-compose --file docker-compose.yml stop
16+
@env docker compose --file docker-compose.yml stop
1717

1818
.PHONY: clean
1919
clean:
20-
@env docker-compose --file docker-compose.yml down -v
20+
@env docker compose --file docker-compose.yml down -v

demos/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ If `ARM64` please read the [support for `ARM64`](#support-for-arm64) section.
4343
2. Start the local Jenkins master service by running:
4444

4545
```
46-
make -C demos start-all
46+
make -C demos start
4747
```
4848

4949
3. Browse to <http://localhost:8080> in your web browser.

0 commit comments

Comments
 (0)