Skip to content

Commit 525d8a3

Browse files
authored
Merge pull request #4786 from tesilaaliset/fix/fix-docker-run
Use Image Tag due script use the image.
2 parents fe653c8 + 5261177 commit 525d8a3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
hiddify:
33
#only for local build and development
4-
build: .
4+
#build: .
55

66
#latest release version
77
#image: ghcr.io/hiddify/hiddify-manager:latest
@@ -10,7 +10,7 @@ services:
1010
#image: ghcr.io/hiddify/hiddify-manager:beta
1111

1212
#latest build of current development
13-
#image: ghcr.io/hiddify/hiddify-manager:dev
13+
image: ghcr.io/hiddify/hiddify-manager:dev
1414

1515
#specific version
1616
#image: ghcr.io/hiddify/hiddify-manager:v10.80.0

docker-init.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
mkdir /hiddify-data/ssl/
44
rm -rf /opt/hiddify-manager/log/*.lock
5-
./apply_configs.sh --no-gui
5+
cd $(dirname -- "$0")
6+
DO_NOT_INSTALL=true ./install.sh install-docker --no-gui $@
67
./status.sh --no-gui
78

89
echo Hiddify is started!!!! in 5 seconds you will see the system logs

0 commit comments

Comments
 (0)