Skip to content

Commit 8ffb393

Browse files
authored
ci: Updated the redis container to use the official redis image as bitnami/redis is moving and no reason to use a 3rd party image (newrelic#3342)
1 parent 2077ce3 commit 8ffb393

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

docker-compose.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -116,18 +116,17 @@ services:
116116

117117
redis:
118118
container_name: nr_node_redis
119-
image: bitnami/redis
119+
image: redis
120120
ports:
121121
- "6379:6379"
122122
- "6380:6380"
123-
environment:
124-
- ALLOW_EMPTY_PASSWORD=yes
125-
- REDIS_TLS_ENABLED=yes
126-
- REDIS_TLS_PORT=6380
127-
- REDIS_TLS_CERT_FILE=/tls/redis.crt
128-
- REDIS_TLS_KEY_FILE=/tls/redis.key
129-
- REDIS_TLS_CA_FILE=/tls/ca.crt
130-
- REDIS_TLS_AUTH_CLIENTS=no
123+
command: >
124+
redis-server
125+
--tls-port 6380
126+
--tls-auth-clients no
127+
--tls-cert-file /tls/redis.crt
128+
--tls-key-file /tls/redis.key
129+
--tls-ca-cert-file /tls/ca.crt
131130
volumes:
132131
- "./docker/redis:/tls"
133132
healthcheck:

0 commit comments

Comments
 (0)