Skip to content

Commit

Permalink
chore: pin postgres version on docker compose files (#2318)
Browse files Browse the repository at this point in the history
  • Loading branch information
schoren committed Apr 5, 2023
1 parent 7dd0217 commit 5b2e8c3
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Expand Up @@ -27,7 +27,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
Expand Up @@ -100,7 +100,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

tt-postgres:
image: postgres
image: postgres:14
container_name: tt-postgres
environment:
POSTGRES_PASSWORD: postgres
Expand Down
Expand Up @@ -94,7 +94,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
Expand Up @@ -94,7 +94,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
Expand Up @@ -30,7 +30,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-datadog/tracetest/docker-compose.yaml
Expand Up @@ -37,7 +37,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

tt-postgres:
image: postgres
image: postgres:14
container_name: tt-postgres
environment:
POSTGRES_PASSWORD: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-lightstep-otel-demo/README.md
Expand Up @@ -84,7 +84,7 @@ The `TRACETEST_SERVICE_PORT` is configured in the `.env` file

# Postgres used by the Tracetest instance
tt_postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-lightstep-otel-demo/docker-compose.yaml
Expand Up @@ -677,7 +677,7 @@ services:

# Postgres used by the Tracetest instance
tt_postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-lightstep/tracetest/docker-compose.yaml
Expand Up @@ -30,7 +30,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-new-relic-otel-demo/README.md
Expand Up @@ -84,7 +84,7 @@ The `TRACETEST_SERVICE_PORT` is configured in the `.env` file

# Postgres used by the Tracetest instance
tt_postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-new-relic-otel-demo/docker-compose.yaml
Expand Up @@ -677,7 +677,7 @@ services:

# Postgres used by the Tracetest instance
tt_postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion examples/tracetest-new-relic/tracetest/docker-compose.yaml
Expand Up @@ -30,7 +30,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down
4 changes: 2 additions & 2 deletions examples/tracetest-otel-demo/docker-compose.yaml
Expand Up @@ -32,7 +32,7 @@ services:
TRACETEST_DEV: ${TRACETEST_DEV}

postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand All @@ -43,7 +43,7 @@ services:
retries: 60

tt_postgres:
image: postgres
image: postgres:14
environment:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
Expand Down

0 comments on commit 5b2e8c3

Please sign in to comment.