mirror of
https://github.com/boostorg/redis.git
synced 2026-01-19 04:42:09 +00:00
CI with Docker compose
This commit is contained in:
16
tools/docker-compose.yml
Normal file
16
tools/docker-compose.yml
Normal file
@@ -0,0 +1,16 @@
|
||||
services:
|
||||
redis:
|
||||
image: "redis:alpine"
|
||||
command: [
|
||||
"redis-server",
|
||||
"--tls-port", "6380",
|
||||
"--tls-cert-file", "/tls/server.crt",
|
||||
"--tls-key-file", "/tls/server-key.key",
|
||||
"--tls-ca-cert-file", "/tls/ca.crt",
|
||||
"--tls-auth-clients", "no",
|
||||
]
|
||||
volumes:
|
||||
- ./tls:/tls
|
||||
ports:
|
||||
- 6379:6379
|
||||
- 6380:6380
|
||||
Reference in New Issue
Block a user