Skip to content

Commit 90f3d6c

Browse files
anarthalmzimbres
authored andcommitted
docker-compose without build
1 parent ef6dea1 commit 90f3d6c

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

tools/Dockerfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

tools/docker-compose.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
services:
22
redis:
3-
build: .
3+
image: "redis:alpine"
4+
command: [
5+
"redis-server",
6+
"--tls-port", "6380",
7+
"--tls-cert-file", "/tls/server.crt",
8+
"--tls-key-file", "/tls/server-key.key",
9+
"--tls-ca-cert-file", "/tls/ca.crt",
10+
"--tls-auth-clients", "no",
11+
]
12+
volumes:
13+
- ./tls:/tls
414
ports:
515
- 6379:6379
616
- 6380:6380

0 commit comments

Comments
 (0)