appstore-1panel/apps/redis/7.2.4/docker-compose.yml

20 lines
474 B
YAML
Raw Normal View History

2023-02-06 15:53:30 +08:00
version: '3'
services:
2023-02-07 15:21:24 +08:00
redis:
image: redis:7.2.4
2023-02-06 15:53:30 +08:00
restart: always
container_name: ${CONTAINER_NAME}
2023-02-06 15:53:30 +08:00
networks:
2023-02-13 15:30:25 +08:00
- 1panel-network
2023-02-06 15:53:30 +08:00
ports:
- ${PANEL_APP_PORT_HTTP}:6379
command: redis-server /etc/redis/redis.conf --requirepass ${PANEL_REDIS_ROOT_PASSWORD}
2023-02-06 15:53:30 +08:00
volumes:
- ./data:/data
- ./conf/redis.conf:/etc/redis/redis.conf
- ./logs:/logs
labels:
createdBy: "Apps"
networks:
2023-02-13 15:30:25 +08:00
1panel-network:
2023-02-06 15:53:30 +08:00
external: true