2022-04-15 14:54:08 +02:00
|
|
|
version: "3.8"
|
|
|
|
|
|
|
|
# https://vikunja.io/docs/config-options/#redis
|
|
|
|
|
|
|
|
services:
|
2024-02-16 13:49:55 +01:00
|
|
|
vikunja:
|
2022-04-15 14:54:08 +02:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
environment:
|
|
|
|
VIKUNJA_REDIS_ENABLED: 'true'
|
|
|
|
VIKUNJA_REDIS_HOST: ${REDIS_CONTAINER_NAME:-redis}:6379 # It's default port because we don't have yet configuration for redis port
|
2024-02-16 13:49:55 +01:00
|
|
|
VIKUNJA_REDIS_PASSWORD: ${VIKUNJA_REDIS_PASSWORD} # We don't have yet configuration for redis with password
|
2022-04-15 14:54:08 +02:00
|
|
|
VIKUNJA_REDIS_DB: 0 # It's default becouse we don't have yet configuration for redis database name
|