Update app version [skip ci]

This commit is contained in:
github-action update-app-version
2026-05-06 00:41:12 +00:00
parent 20ea6ab3f6
commit 1bddddebb9
8 changed files with 0 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
networks:
1panel-network:
external: true
services:
redis:
image: redis:7.4.9-alpine
container_name: ${CONTAINER_NAME}
labels:
createdBy: "Apps"
restart: always
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:6379
command: >
sh -c '
if [ -z "${REDIS_ROOT_PASSWORD}" ]; then
redis-server /etc/redis/redis.conf
else
redis-server /etc/redis/redis.conf --requirepass ${REDIS_ROOT_PASSWORD}
fi'
volumes:
- ${REDIS_ROOT_PATH}/data:/data
- ${REDIS_ROOT_PATH}/config/redis.conf:/etc/redis/redis.conf
- ${REDIS_ROOT_PATH}/logs:/logs