Synced apps from source repository via GitHub Actions

This commit is contained in:
QYG2297248353
2025-04-25 03:37:09 +00:00
parent 977cc695fb
commit 365a8f7104
60 changed files with 7 additions and 7 deletions
+21
View File
@@ -0,0 +1,21 @@
networks:
1panel-network:
external: true
services:
redis:
command: "sh -c ' if [ -z \"${REDIS_ROOT_PASSWORD}\" ]; then\n redis-server /etc/redis/redis.conf\n\
else\n redis-server /etc/redis/redis.conf --requirepass ${REDIS_ROOT_PASSWORD}\n\
fi'\n"
container_name: redis
image: redis:7.4.3-alpine
labels:
createdBy: Apps
networks:
- 1panel-network
ports:
- ${PANEL_APP_PORT_HTTP}:6379
restart: always
volumes:
- ${REDIS_ROOT_PATH}/data:/data
- ${REDIS_ROOT_PATH}/config/redis.conf:/etc/redis/redis.conf
- ${REDIS_ROOT_PATH}/logs:/logs