diff --git a/ubuntu/redis/compose.yaml b/ubuntu/redis/compose.yaml new file mode 100644 index 0000000..4a5a564 --- /dev/null +++ b/ubuntu/redis/compose.yaml @@ -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: +