Я следовал этому руководству для развертывания Ghost на Google App Engine https://cloud.google.com/community/tutorials/ghost-on-app-engine-part-1-deploying
Однако подход к установке Ghost в качестве модуля NPM устарел.
В этом учебнике был представлен методустановки Ghost с помощью Dockerfile. https://vanlatum.dev/ghost-appengine/
Я пытаюсь развернуть Ghost в Google App Engine с помощью этого файла Docker и подключиться к моей базе данных Google Cloud SQL.
Однако я получаю проблему:
ERROR: (gcloud.app.deploy) Error Response: [9]
Application startup error:
[2019-10-03 21:10:46] ERROR connect ENOENT /cloudsql/ghost
connect ENOENT /cloudsql/ghost
"Unknown database error"
Error ID:
500
Error Code:
ENOENT
----------------------------------------
DatabaseError: connect ENOENT /cloudsql/ghost
at DatabaseError.KnexMigrateError (/var/lib/ghost/versions/2.31.1/node_modules/knex-migrator/lib/errors.js:7:26)
В первом уроке упоминается необходимость запуска миграции перед запуском ghost, чтобы предотвратить эту проблему. Поэтому я попытался добавить эту строку в свой Dockerfile
RUN npm install knex-migrator --no-save
RUN NODE_ENV=production node_modules/knex-migrator init --mgpath node_modules/ghost
Но затем я получаю следующую ошибку:
/bin/sh: 1: node_modules/knex-migrator: Permission denied
The command '/bin/sh -c NODE_ENV=production node_modules/knex-migrator init --mgpath node_modules/ghost' returned a non-zero code: 126
Как мне настроить Dockerfile для переноса базы данных перед запуском Ghostчтобы убедиться, что он может подключаться к базе данных Cloud SQL?
Файлы:
Dockerfile
FROM ghost
COPY config.production.json /var/lib/ghost/config.production.json
WORKDIR /var/lib/ghost
COPY credentials.json /var/lib/ghost/credentials.json
RUN npm install ghost-gcs --no-save
WORKDIR /var/lib/ghost/content/adapters/storage/ghost-gcs/
ADD https://raw.githubusercontent.com/thomas-vl/ghost-gcs/master/export.js index.js
WORKDIR /var/lib/ghost
config.production.json
{
"url": "https://redactedurl.appspot.com",
"fileStorage": false,
"mail": {},
"database": {
"client": "mysql",
"connection": {
"socketPath": "/cloudsql/ghost",
"user": "redacted",
"password": "redacted",
"database": "ghost",
"charset": "utf8"
},
"debug": false
},
"server": {
"host": "0.0.0.0",
"port": "2368"
},
"paths": {
"contentPath": "content/"
},
"logging": {
"level": "info",
"rotation": {
"enabled": true
},
"transports": ["file", "stdout"]
},
"storage": {
"active": "ghost-gcs",
"ghost-gcs": {
"key": "credentials.json",
"bucket": "redactedurl"
}
}
}
app.yaml
runtime: custom
service: blog
env: flex
manual_scaling:
instances: 1
env_variables:
MYSQL_USER: redacted
MYSQL_PASSWORD: redacted
MYSQL_DATABASE: ghost
INSTANCE_CONNECTION_NAME: redacted:us-central1:ghost
beta_settings:
cloud_sql_instances: redacted:us-central1:ghost
skip_files:
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
- ^(.*/)?.*\.ts$
- ^(.*/)?config\.development\.json$
``