create-directus-docker 1.7.0 → 1.7.2

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,7 +1,7 @@
1
1
  {
2
2
  "name": "create-directus-docker",
3
3
  "description": "An installer for Dockerized Directus + MySQL + Adminer + GraphQL Sandbox with a helper Node app",
4
- "version": "1.7.0",
4
+ "version": "1.7.2",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Dave Kobrenski",
@@ -15,7 +15,7 @@ services:
15
15
  ports:
16
16
  - 3306:3306
17
17
  volumes:
18
- - ./mysql:/var/lib/mysql
18
+ - mysql-data:/var/lib/mysql
19
19
  - ./init:/docker-entrypoint-initdb.d
20
20
  # command: --mysql-native-password=ON
21
21
  environment:
@@ -42,7 +42,7 @@ services:
42
42
 
43
43
  cache:
44
44
  container_name: cache
45
- image: redis:6.2.6
45
+ image: redis:6.2.19
46
46
  healthcheck:
47
47
  test: ["CMD-SHELL", "[ $$(redis-cli ping) = 'PONG' ]"]
48
48
  interval: 10s
@@ -55,7 +55,7 @@ services:
55
55
 
56
56
  directus:
57
57
  container_name: directus
58
- image: directus/directus:11.3.5
58
+ image: directus/directus:11.12.0
59
59
  restart: always
60
60
  ports:
61
61
  - ${DIRECTUS_PORT}:8055
@@ -100,6 +100,8 @@ services:
100
100
 
101
101
  PUBLIC_URL: ${PUBLIC_URL}
102
102
 
103
+ volumes:
104
+ mysql-data:
103
105
  networks:
104
106
  directus:
105
107
  driver: bridge
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directus-mysql-docker",
3
- "version": "1.3.4",
3
+ "version": "1.3.6",
4
4
  "description": "A helper app to configure Directus on Docker with MySQL, Adminer, and Apollo GraphQL Sandbox",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",