mirror of
https://github.com/rommapp/romm.git
synced 2026-06-30 07:45:52 +00:00
This change replaces the bundled Redis server with Valkey. No breaking changes are introduced, as considered environment variables still maintain the `REDIS_` prefix. Fixes #925.
22 lines
447 B
YAML
22 lines
447 B
YAML
services:
|
|
mariadb:
|
|
image: mariadb:latest
|
|
container_name: mariadb
|
|
restart: unless-stopped
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=$DB_ROOT_PASSWD
|
|
- MYSQL_DATABASE=$DB_NAME
|
|
- MYSQL_USER=$DB_USER
|
|
- MYSQL_PASSWORD=$DB_PASSWD
|
|
ports:
|
|
- $DB_PORT:3306
|
|
|
|
valkey:
|
|
image: valkey/valkey:8
|
|
container_name: valkey
|
|
restart: unless-stopped
|
|
ports:
|
|
- $REDIS_PORT:6379
|
|
env_file:
|
|
- .env
|