Create compose.yaml

This commit is contained in:
David Rotermund 2024-07-12 14:40:53 +02:00 committed by GitHub
parent 3eb243f3e6
commit 1bb0822ec1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

15
ubuntu/redis/compose.yaml Normal file
View file

@ -0,0 +1,15 @@
services:
redis:
image: "redis:6.2-alpine"
container_name: "redis"
hostname: "redis"
restart: always
volumes:
- redis:/data
ports:
- 6379:6379
network_mode: bridge
volumes:
redis: