Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
volumes:
- ./docker-data/:/hiddify-data/
env_file:
- path: ./docker.env
- path: docker.env
#environment:
#REDIS_PASSWORD used if REDIS_URI_MAIN or REDIS_URI_SSH is not set
#MYSQL_PASSWORD used if SQLALCHEMY_DATABASE_URI is not set
Expand All @@ -41,7 +41,7 @@ services:
container_name: mariadb_container
restart: always
env_file:
- path: ./docker.env
- path: docker.env
environment:
MARIADB_RANDOM_ROOT_PASSWORD: 1 # Root user password
MYSQL_DATABASE: hiddifypanel
Expand All @@ -54,8 +54,8 @@ services:
container_name: redis_container
restart: always
env_file:
- path: ./docker.env
command: sh -c "redis-server --requirepass \"$REDIS_PASSWORD\""
- path: docker.env
command: sh -c "redis-server --requirepass \"$${REDIS_PASSWORD}\""
volumes:
- ./docker-data/redis_data:/data # Persistent storage for Redis data