Create compose.yaml

This commit is contained in:
David Rotermund 2024-07-12 14:52:32 +02:00 committed by GitHub
parent 56413a5832
commit be7dcff029
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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