NOISSUE - Update docker-compose images to latest release (#1419)

* MF-1390 - Fix docker-compose env_file

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Update README

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* NOISSUE - Update docker-compose images to latest release

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>

* Use Postgres 13.3-alpine

Signed-off-by: Manuel Imperiale <manuel.imperiale@gmail.com>
This commit is contained in:
Manuel Imperiale 2021-05-24 18:35:07 +02:00 committed by GitHub
parent 516c02bebe
commit 9e5e50b347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 15 additions and 15 deletions

View File

@ -30,7 +30,7 @@ func TestMain(m *testing.M) {
"POSTGRES_PASSWORD=test",
"POSTGRES_DB=test",
}
container, err := pool.Run("postgres", "10.8-alpine", cfg)
container, err := pool.Run("postgres", "13.3-alpine", cfg)
if err != nil {
log.Fatalf("Could not start container: %s", err)
}

View File

@ -31,7 +31,7 @@ func TestMain(m *testing.M) {
"POSTGRES_PASSWORD=test",
"POSTGRES_DB=test",
}
container, err := pool.Run("postgres", "10.8-alpine", cfg)
container, err := pool.Run("postgres", "13.3-alpine", cfg)
if err != nil {
testLog.Error(fmt.Sprintf("Could not start container: %s", err))
}

View File

@ -33,7 +33,7 @@ func TestMain(m *testing.M) {
"POSTGRES_PASSWORD=test",
"POSTGRES_DB=test",
}
container, err := pool.Run("postgres", "10.8-alpine", cfg)
container, err := pool.Run("postgres", "13.3-alpine", cfg)
if err != nil {
log.Fatalf("Could not start container: %s", err)
}

View File

@ -18,7 +18,7 @@ volumes:
services:
certs-db:
image: postgres:10.8-alpine
image: postgres:13.3-alpine
container_name: mainflux-certs-db
restart: on-failure
environment:

View File

@ -17,7 +17,7 @@ volumes:
services:
nginx:
image: nginx:1.16.0-alpine
image: nginx:1.20.0-alpine
container_name: mainflux-nginx
restart: on-failure
volumes:
@ -46,7 +46,7 @@ services:
- http-adapter
nats:
image: nats:1.3.0
image: nats:2.2.4-alpine
container_name: mainflux-nats
command: "-c /etc/nats/nats.conf"
restart: on-failure
@ -56,7 +56,7 @@ services:
- mainflux-base-net
auth-db:
image: postgres:10.8-alpine
image: postgres:13.3-alpine
container_name: mainflux-auth-db
restart: on-failure
environment:
@ -94,7 +94,7 @@ services:
- mainflux-base-net
users-db:
image: postgres:10.8-alpine
image: postgres:13.3-alpine
container_name: mainflux-users-db
restart: on-failure
environment:
@ -142,7 +142,7 @@ services:
- mainflux-base-net
things-db:
image: postgres:10.8-alpine
image: postgres:13.3-alpine
container_name: mainflux-things-db
restart: on-failure
environment:
@ -155,7 +155,7 @@ services:
- mainflux-things-db-volume:/var/lib/postgresql/data
auth-redis:
image: redis:5.0-alpine
image: redis:6.2.2-alpine
container_name: mainflux-auth-redis
restart: on-failure
networks:
@ -193,7 +193,7 @@ services:
- mainflux-base-net
jaeger:
image: jaegertracing/all-in-one:1.13
image: jaegertracing/all-in-one:1.20
container_name: mainflux-jaeger
ports:
- ${MF_JAEGER_PORT}:${MF_JAEGER_PORT}/udp
@ -261,7 +261,7 @@ services:
- mainflux-base-net
es-redis:
image: redis:5.0-alpine
image: redis:6.2.2-alpine
container_name: mainflux-es-redis
restart: on-failure
networks:

View File

@ -33,7 +33,7 @@ func TestMain(m *testing.M) {
"POSTGRES_PASSWORD=test",
"POSTGRES_DB=test",
}
container, err := pool.Run("postgres", "10.8-alpine", cfg)
container, err := pool.Run("postgres", "13.3-alpine", cfg)
if err != nil {
log.Fatalf("Could not start container: %s", err)
}

View File

@ -35,7 +35,7 @@ func TestMain(m *testing.M) {
"POSTGRES_PASSWORD=test",
"POSTGRES_DB=test",
}
container, err := pool.Run("postgres", "10.8-alpine", cfg)
container, err := pool.Run("postgres", "13.3-alpine", cfg)
if err != nil {
log.Fatalf("Could not start container: %s", err)
}

View File

@ -30,7 +30,7 @@ func TestMain(m *testing.M) {
"POSTGRES_PASSWORD=test",
"POSTGRES_DB=test",
}
container, err := pool.Run("postgres", "10.8-alpine", cfg)
container, err := pool.Run("postgres", "13.3-alpine", cfg)
if err != nil {
log.Fatalf("Could not start container: %s", err)
}