create-directus-docker 1.6.5 → 1.6.7

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.6.5",
4
+ "version": "1.6.7",
5
5
  "type": "module",
6
6
  "author": {
7
7
  "name": "Dave Kobrenski",
@@ -2,7 +2,7 @@ services:
2
2
 
3
3
  mysql:
4
4
  container_name: mysql
5
- image: mysql:9.0.1
5
+ image: mysql:9.1.0
6
6
  restart: always
7
7
  healthcheck:
8
8
  test: ['CMD', 'mysqladmin', 'ping', '--silent']
@@ -55,7 +55,7 @@ services:
55
55
 
56
56
  directus:
57
57
  container_name: directus
58
- image: directus/directus:11.1.1
58
+ image: directus/directus:11.3.5
59
59
  restart: always
60
60
  ports:
61
61
  - ${DIRECTUS_PORT}:8055
@@ -18,7 +18,7 @@ MYSQL_ROOT_PASS="s0mEpa55w0rd"
18
18
  # eg, https://mydomain.com
19
19
  # in local dev environments, just leave it set to localhost:port
20
20
  DIRECTUS_DOMAIN="localhost"
21
- DIRECTUS_PORT="8055"
21
+ DIRECTUS_PORT=8055
22
22
  PUBLIC_URL="https://your-domain.com"
23
23
  API_ENDPOINT="https://your-domain.com/graphql"
24
24
 
@@ -159,7 +159,7 @@ try {
159
159
  writeStream.write("# eg, https://mydomain.com\n");
160
160
  writeStream.write("# in local dev environments, just leave it set to localhost:port\n");
161
161
  writeStream.write(`DIRECTUS_DOMAIN="${answers.DIRECTUS_DOMAIN}"\n`);
162
- writeStream.write(`DIRECTUS_PORT="${answers.DIRECTUS_PORT}"\n`);
162
+ writeStream.write(`DIRECTUS_PORT=${answers.DIRECTUS_PORT}\n`);
163
163
 
164
164
  if(answers.DIRECTUS_DOMAIN == "localhost") {
165
165
  if(answers.DIRECTUS_PORT == 80) {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "directus-mysql-docker",
3
- "version": "1.3.1",
3
+ "version": "1.3.2",
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",