create-aomex 0.0.56 → 0.0.58

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
  {
2
2
  "name": "create-aomex",
3
- "version": "0.0.56",
3
+ "version": "0.0.58",
4
4
  "repository": "git@github.com:aomex/create-aomex.git",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -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里的参数
@@ -15,18 +15,13 @@ services:
15
15
  healthcheck:
16
16
  test:
17
17
  ['CMD', 'mysqladmin', 'ping', '-h', 'localhost', '-u', 'root', '-p$$MYSQL_ROOT_PASSWORD']
18
- interval: 3s
19
- timeout: 5s
18
+ interval: 5s
19
+ timeout: 3s
20
20
  retries: 10
21
21
  redis:
22
- image: redis:7
22
+ image: redis:8.0-M04
23
23
  volumes:
24
24
  - ./volumes/redis:/data
25
25
  ports:
26
26
  - 6379:6379
27
27
  command: --requirepass abcde
28
- healthcheck:
29
- test: ['CMD', 'redis-cli', '-a', 'abcde', 'ping']
30
- interval: 3s
31
- timeout: 5s
32
- retries: 10