mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 03:36:55 +08:00
926b7f5294
* chore(deps): update redis docker tag to v7.2.3 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
20 lines
474 B
YAML
20 lines
474 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis:7.2.3
|
|
restart: always
|
|
container_name: ${CONTAINER_NAME}
|
|
networks:
|
|
- 1panel-network
|
|
ports:
|
|
- ${PANEL_APP_PORT_HTTP}:6379
|
|
command: redis-server /etc/redis/redis.conf --requirepass ${PANEL_REDIS_ROOT_PASSWORD}
|
|
volumes:
|
|
- ./data:/data
|
|
- ./conf/redis.conf:/etc/redis/redis.conf
|
|
- ./logs:/logs
|
|
labels:
|
|
createdBy: "Apps"
|
|
networks:
|
|
1panel-network:
|
|
external: true |