Hi, good video and blog post. I'm missing one thing - what about image/media files uploaded in strapi?
@Eventyret2 жыл бұрын
If you want to do that you need to use an external provider. Or bind mount a folder on the server to the container. Hope it helps.
@wariomn2 жыл бұрын
@@Eventyret yeah exactly what I had in mind, but wanted to confirm. Thanks!
@greendsnow2 жыл бұрын
Can I create Database in Docker Image after loading it to the cloud? add plugins ? or even customize it?
@ZacharyBurgess10 ай бұрын
If you run into this error: error docker-strapi-tutorial@0.1.0: The engine "node" is incompatible with this module. Expected version ">=18.0.0
@Strapi9 ай бұрын
Thank you.
@thomasapfelbacher9308 Жыл бұрын
The link to the uick start quide is malformated. so there shows up a 404
@user-me5rv7kq1s2 жыл бұрын
why don't you guys have strapi v4 official docker image already when it's most asked feature on votepage?
@pierreburgy74422 жыл бұрын
The reason is that Strapi is designed to be installed locally and deployed to production with your own configuration files. As a result, we recommend using the Dockerfile described in the video but build your own Docker image (dedicated to your Strapi project).
@DaveThomson Жыл бұрын
@@pierreburgy7442configuration should be passed in. I don't want to bake config into every containter i run.
@shuaibabdulgafar10402 жыл бұрын
Any ideas how to reduce the image size? 2.7Gb is quite large
@tobi_k2 жыл бұрын
One possible solution might be to use the node:17-alpine Docker image instead as your base image… since the alpine based image is usually significantly smaller than the Debian based version this should reduce your final image size… keep in mind though that you have to use apk instead of apt to install any required dependencies.