Skip to content
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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ Apache Flink Web UI is now available at `localhost:8081`

To Access the SQL CLI, execute

It could be done via one-line command
```
docker exec -it $(docker ps -qlf name=sql-cli-for-apache-flink-docker_sql-client) /opt/sql-client/sql-client.sh
```

Or step by step instructions
```
docker ps
```
Expand All @@ -61,7 +67,7 @@ docker exec -it <CONTAINER_ID> /bin/bash
Finally execute

```
./sql-cli.sh
./sql-client.sh
```

This will popup Flink sql cli
Expand Down