Skip to content

Commit

Permalink
more "docker-compose" -> "docker compose" updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dselans committed Sep 14, 2024
1 parent f25e5f7 commit eb9f8a3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/master-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
go-version: '~1.21' # The Go version to download (if necessary) and use.
- name: Start up dependencies
run: docker-compose up -d
run: docker compose up -d
- name: Wait for dependencies to start up
uses: jakejarvis/wait-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
go-version: '~1.21' # The Go version to download (if necessary) and use.
- name: Start up dependencies
run: docker-compose up -d
run: docker compose up -d
- name: Wait for dependencies to start up
uses: jakejarvis/wait-action@master
with:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ run:
.PHONY: start/deps
start/deps: description = Start dependencies
start/deps:
docker-compose up -d rabbitmq kafka
docker compose up -d rabbitmq kafka

### Build

Expand All @@ -59,7 +59,7 @@ build/linux-amd64: description = Build $(BINARY) for linux
build/linux-amd64: clean
GOOS=linux GOARCH=amd64 $(GO) build $(GO_BUILD_FLAGS) -o ./build/$(BINARY)-linux-amd64


.PHONY: build/linux-x86_64
build/linux-x86_64: description = Build $(BINARY) for linux
build/linux-x86_64: clean
Expand Down
6 changes: 3 additions & 3 deletions docs/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ $ git clone git@github.com:batchcorp/plumber.git
$ cd plumber

# Launch a NATS container
$ docker-compose up -d natsjs
$ docker compose up -d natsjs

# Launch plumber in cluster mode
$ plumber server --enable-cluster
Expand All @@ -145,7 +145,7 @@ $ git clone git@github.com:batchcorp/plumber.git
$ cd plumber

# Launch a NATS container
$ docker-compose up -d natsjs
$ docker compose up -d natsjs

# Launch a plumber container that points to your NATS instance
$ docker run --name plumber-server -p 9090:9090 \
Expand Down Expand Up @@ -483,4 +483,4 @@ spec:

### Kubernetes Helm

Follow the `README.md` in https://github.com/batchcorp/plumber-helm#cluster-mode
Follow the `README.md` in https://github.com/batchcorp/plumber-helm#cluster-mode
4 changes: 2 additions & 2 deletions test-assets/cdc-mongo/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mongo test setup

1. Bring up mongo container `docker-compose up -d`
1. Bring up mongo container `docker compose up -d`
2. Exec into container `docker exec -it mongodb /bin/bash`
3. Enter mongo shell `mongo`
1. Run the following
Expand Down Expand Up @@ -49,4 +49,4 @@
},
"operationType": "insert"
}
```
```

0 comments on commit eb9f8a3

Please sign in to comment.