strapi-docker
Install and run your first Strapi project using Docker
File Explorer
- Dockerfile
- Dockerfile
- base.js
- build.js
- constants.js
- strapi.js
- utils.js
- .dockerignore
- Dockerfile
- Dockerfile
- run.sh
- docker-compose.yml
- docker-compose.yml
- docker-compose.yml
- docker-compose.yml
- docker-entrypoint.sh
- Dockerfile
- .eslintignore
- .eslintrc.js
- .gitignore
- .prettierrc.js
- .travis.yml
- LICENSE.md
- package.json
- README.md
- yarn.lock
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker run
View Details ▼
docker run
This command is an alias of `docker container run`.
tldr docker container run
View documentation for the original command:
yarn
View Details ▼
yarn
JavaScript and Node.js package manager alternative.
yarn global add {{module_name}}
Install a module globally:
yarn install
Install all dependencies referenced in the `package.json` file (the `install` is optional):
yarn add {{module_name}}@{{version}}
Install a module and save it as a dependency to the `package.json` file (add `--dev` to save as a dev dependency):
