appstore-1panel/apps/redis/6.0.16/docker-compose.yml
2023-05-18 18:25:00 +08:00

21 lines
492 B
YAML

version: '3'
services:
redis:
image: redis:6.0.16
restart: always
container_name: ${CONTAINER_NAME}
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:6379
command: redis-server /etc/redis/redis.conf --loglevel warning --requirepass ${PANEL_DB_ROOT_PASSWORD}
volumes:
- ./data:/data
- ./conf/redis.conf:/etc/redis/redis.conf
- ./logs:/logs
labels:
createdBy: "Apps"
networks:
1panel-network:
external: true