create-aomex 0.0.55 → 0.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
services:
|
|
2
2
|
mysql:
|
|
3
|
-
image: mysql:8
|
|
3
|
+
image: mysql:8.4
|
|
4
4
|
environment:
|
|
5
5
|
MYSQL_ROOT_PASSWORD: 'abcde'
|
|
6
6
|
# 修改后需要同步修改.env里的参数
|
|
@@ -19,7 +19,7 @@ services:
|
|
|
19
19
|
timeout: 5s
|
|
20
20
|
retries: 10
|
|
21
21
|
redis:
|
|
22
|
-
image: redis:
|
|
22
|
+
image: redis:8.0-M04
|
|
23
23
|
volumes:
|
|
24
24
|
- ./volumes/redis:/data
|
|
25
25
|
ports:
|
|
@@ -14,7 +14,7 @@ then
|
|
|
14
14
|
# exit 137 SIGKILL
|
|
15
15
|
{ sudo docker compose --file $docker_compose_file exec -it $cron_service_name /bin/sh -c "npx aomex cron:stop" || :; }
|
|
16
16
|
# against restart=always
|
|
17
|
-
sudo docker compose --file $docker_compose_file
|
|
17
|
+
sudo docker compose --file $docker_compose_file stop $cron_service_name
|
|
18
18
|
fi
|
|
19
19
|
|
|
20
20
|
sudo docker compose --file $docker_compose_file up -d --timeout=1 --remove-orphans
|