Skip to content

Commit

Permalink
Docker-compose: Remove obsolete version field
Browse files Browse the repository at this point in the history
  • Loading branch information
roekatz committed Jul 18, 2024
1 parent ba89632 commit 8c30c89
Show file tree
Hide file tree
Showing 13 changed files with 0 additions and 13 deletions.
1 change: 0 additions & 1 deletion docker/docker-compose-api-policy-source-example.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-example-cedar.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-example.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-git-webhook.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-scopes-example.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
redis:
image: redis
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-with-callbacks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-with-kafka-example.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"

services:
# Based on: https://developer.confluent.io/quickstart/kafka-docker/
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-with-oauth-initial.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-with-rate-limiting.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# This docker compose example shows how to configure OPAL's rate limiting feature
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-with-security.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# this docker compose file is relying on external environment variables!
# run it by running the script: ./run-example-with-security.sh
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
1 change: 0 additions & 1 deletion docker/docker-compose-with-statistics.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.8"
services:
# When scaling the opal-server to multiple nodes and/or multiple workers, we use
# a *broadcast* channel to sync between all the instances of opal-server.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ This example is running three containers that we have mentioned at the beginning
Here is an overview of the whole `docker-compose.yml` file, but don't worry, we will be referring to each section separately.

```yml showLineNumbers
version: "3.8"
services:
broadcast_channel:
image: postgres:alpine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ opal_server:
You can also simply change the tracked repo in the example `docker-compose.yml` file by editing these variables:

```yml {7,9,11} showLineNumbers
version: "3.8"
services:
...
opal_server:
Expand Down

0 comments on commit 8c30c89

Please sign in to comment.