Skip to content

Commit

Permalink
migrate to compose v2 (bitsondatadev#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Liu authored Feb 23, 2023
1 parent 93ae8f7 commit e1e6a71
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ The first level of directories in this repo are generally organized by [connecto

### Start Service

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

### Stop Service

`docker-compose stop`
`docker compose stop`

### Clean Service

Expand Down Expand Up @@ -66,6 +66,6 @@ The first level of directories in this repo are generally organized by [connecto

### List Service Process information

`docker-compose ps`
`docker compose ps`

See trademark and other [legal notices](https://trino.io/legal.html).
2 changes: 1 addition & 1 deletion amundsen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ git clone [email protected]:bitsondatadev/trino-getting-started.git
cd amundsen
docker-compose up -d
docker compose up -d
```

Once all the services are running clone the Amundsen repository in a seperate
Expand Down
2 changes: 1 addition & 1 deletion delta-lake/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ for a full demo, and check the show notes for SQL sample queries.
Start the Docker containers:

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

Connect with your SQL client of choice. The following steps are applicable with
Expand Down
2 changes: 1 addition & 1 deletion druid/trino-druid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ git clone [email protected]:bitsondatadev/trino-getting-started.git
cd druid/trino-druid
docker-compose up -d
docker compose up -d
```

To do batch insert, we can navigate to the Druid Web UI once it has finished
Expand Down
2 changes: 1 addition & 1 deletion elasticsearch/trino-elasticsearch7/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First, you want to start the services. Make sure that you are in the
command:

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

You should expect to see the following output (you may also have to download
Expand Down
4 changes: 2 additions & 2 deletions hive/trino-minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ First, you want to start the services. Make sure that you are in the
command:

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

You should expect to see the following output (you may also have to download
Expand Down Expand Up @@ -359,7 +359,7 @@ Once you complete this tutorial, the resources used for this excercise can be re
by runnning the following command:

```
docker-compose down
docker compose down
```


Expand Down
4 changes: 2 additions & 2 deletions iceberg/trino-alluxio-iceberg-minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ First, you want to start the services. Make sure that you are in the
command:

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

You should expect to see the following output. Docker may also have to download
Expand Down Expand Up @@ -230,7 +230,7 @@ Once you complete this tutorial, the resources used for this excercise can be re
by runnning the following command:

```
docker-compose down
docker compose down
```

See trademark and other [legal notices](https://trino.io/legal.html).
2 changes: 1 addition & 1 deletion kafka/trino-kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First, you want to start the services. Make sure that you are in the
command:

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

You should expect to see the following output (you may also have to download
Expand Down
2 changes: 1 addition & 1 deletion lakefs/trino-lakefs-minio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ are in `trino-getting-started/lakefs/trino-lakefs-minio/` directory and run
the following command:

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

You should expect to see the following output (you may also have to download
Expand Down
2 changes: 1 addition & 1 deletion mongo/trino-mongo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First, you want to start the services. Make sure that you are in the
command:

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

You should expect to see the following output (you may also have to download
Expand Down
2 changes: 1 addition & 1 deletion mysql/trino-mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First, you want to start the services. Make sure that you are in the
command:

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

You should expect to see the following output (you may also have to download
Expand Down
4 changes: 2 additions & 2 deletions pinot/trino-pinot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ git clone [email protected]:bitsondatadev/trino-getting-started.git
cd pinot/trino-pinot
docker-compose up -d
docker compose up -d
```

**NOTE: There is an issue where zookeeper isn't completely ready before other
containers start to load. You will likely need to run `docker-compose up -d`
containers start to load. You will likely need to run `docker compose up -d`
a second time until I get the fix in.**

To do batch insert, we will stage a csv file to read the data in. Create a
Expand Down

0 comments on commit e1e6a71

Please sign in to comment.