Skip to content

Commit

Permalink
remove profile ksqldb
Browse files Browse the repository at this point in the history
  • Loading branch information
sauljabin committed Jul 16, 2024
1 parent e048445 commit 9f2440e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
5 changes: 3 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,9 @@ services:
connect:
- name: kafka-connect
url: http://kafka-connect:8083
ksqldb:
- name: "ksqldb"
url: "http://ksqldb:8088"
mysql:
image: mysql:latest
Expand Down Expand Up @@ -178,8 +181,6 @@ services:

ksqldb:
image: confluentinc/cp-ksqldb-server:${CONFLUENT_VERSION}
profiles:
- ksqldb
environment:
KSQL_KSQL_SERVICE_ID: ksqldb.
KSQL_LISTENERS: http://0.0.0.0:8088
Expand Down
2 changes: 1 addition & 1 deletion md/cleanup.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Shutting down all services:

```bash
docker compose --profile proxies --profile sql --profile mqtt --profile ksqldb down
docker compose --profile proxies --profile sql --profile mqtt down
```

> [!TIP]
Expand Down
8 changes: 1 addition & 7 deletions md/what-is-ksqldb.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,7 @@ ksqlDB it is not a SQL database, it provides an extra layer for implementing kst

### Run ksqlDB

Start ksqldb:

```bash
docker compose --profile ksqldb up -d
```

After a few seconds check if it is up:
Check if it's up:

```bash
http ksqldb:8088/info
Expand Down

0 comments on commit 9f2440e

Please sign in to comment.