From be7dcff029105d3772093091abab955d4c2e8489 Mon Sep 17 00:00:00 2001 From: David Rotermund Date: Fri, 12 Jul 2024 14:52:32 +0200 Subject: [PATCH] Create compose.yaml --- ubuntu/redis_authentik/compose.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ubuntu/redis_authentik/compose.yaml diff --git a/ubuntu/redis_authentik/compose.yaml b/ubuntu/redis_authentik/compose.yaml new file mode 100644 index 0000000..4898be6 --- /dev/null +++ b/ubuntu/redis_authentik/compose.yaml @@ -0,0 +1,15 @@ +services: + redis: + image: "redis:alpine" + container_name: "redis-authentik" + hostname: "redis-authentik" + restart: always + volumes: + - redis_authentik:/data + ports: + - 6380:6379 + network_mode: bridge + +volumes: + redis_authentik: +