diff --git a/cms/Dockerfile b/cms/Dockerfile index d5d7989..2280c96 100644 --- a/cms/Dockerfile +++ b/cms/Dockerfile @@ -16,4 +16,4 @@ RUN chown -R node:node /opt/app USER node RUN ["npm", "run", "build"] EXPOSE 1337 -CMD ["npm", "run", "develop"] +CMD ["npm", "run", "dev"] diff --git a/cms/README.md b/cms/README.md index 879d89b..2c495ed 100644 --- a/cms/README.md +++ b/cms/README.md @@ -2,14 +2,14 @@ Strapi comes with a full featured [Command Line Interface](https://docs.strapi.io/dev-docs/cli) (CLI) which lets you scaffold and manage your project in seconds. -### `develop` +### `dev` Start your Strapi application with autoReload enabled. [Learn more](https://docs.strapi.io/dev-docs/cli#strapi-develop) ``` -npm run develop +npm run dev # or -yarn develop +yarn dev ``` ### `start`