31 lines
1.1 KiB
Markdown
31 lines
1.1 KiB
Markdown
# Valkey
|
|
|
|

|
|

|
|
|
|
### Features & usage
|
|
- Built on the [official image](https://github.com/valkey-io/valkey-container), 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.
|