Valkey
Features & usage
- Built on the official image, to be used as a drop-in replacement.
 - Unprivileged image: you should check your volumes' permissions (eg 
/data), default UID/GID 200010. 
Sample Docker Compose config
  valkey:
    container_name: valkey
    image: git.conorz.at/titanz-containers/valkey:8
    restart: unless-stopped
    volumes:
      - ./valkey:/data:Z
    user: "200010:200010"
    read_only: true
    security_opt:
      - "no-new-privileges=true"
    cap_drop:
      - ALL
Licensing
- The code in this repository is licensed under the Apache license. 😇
 - The image is built on 
docker.io/valkey/valkey, which is under the BSD license. Copyright to the base image belongs to LF Projects LLC. - Any image built by titanz containers is provided under the combination of license terms resulting from the use of individual packages.
 
Description
				
					Languages
				
				
								
								
									Dockerfile
								
								100%