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: +