mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
535 B
YAML
22 lines
535 B
YAML
#ddev-generated
|
|
services:
|
|
redis:
|
|
container_name: ddev-${DDEV_SITENAME}-redis
|
|
image: ${REDIS_DOCKER_IMAGE:-redis:7}
|
|
# These labels ensure this service is discoverable by ddev.
|
|
labels:
|
|
com.ddev.site-name: ${DDEV_SITENAME}
|
|
com.ddev.approot: ${DDEV_APPROOT}
|
|
restart: "no"
|
|
expose:
|
|
- 6379
|
|
volumes:
|
|
- ".:/mnt/ddev_config"
|
|
- "ddev-global-cache:/mnt/ddev-global-cache"
|
|
- "./redis:/etc/redis/conf"
|
|
- "redis:/data"
|
|
command: /etc/redis/conf/redis.conf
|
|
|
|
volumes:
|
|
redis:
|