├── .github └── workflows │ ├── auto-check-new-releases.yml │ ├── manual-release.yml │ └── publish-docker-images.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets └── PNG.logo.purple.dark.png ├── examples ├── strapi-postgres │ ├── README.md │ └── docker-compose.yml └── strapi-sqlite │ ├── README.md │ └── docker-compose.yml ├── images ├── strapi-alpine │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh └── strapi-debian │ ├── Dockerfile │ ├── README.md │ └── docker-entrypoint.sh └── release-versions └── strapi-latest.txt /.github/workflows/auto-check-new-releases.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/.github/workflows/auto-check-new-releases.yml -------------------------------------------------------------------------------- /.github/workflows/manual-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/.github/workflows/manual-release.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docker-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/.github/workflows/publish-docker-images.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/README.md -------------------------------------------------------------------------------- /assets/PNG.logo.purple.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/assets/PNG.logo.purple.dark.png -------------------------------------------------------------------------------- /examples/strapi-postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/examples/strapi-postgres/README.md -------------------------------------------------------------------------------- /examples/strapi-postgres/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/examples/strapi-postgres/docker-compose.yml -------------------------------------------------------------------------------- /examples/strapi-sqlite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/examples/strapi-sqlite/README.md -------------------------------------------------------------------------------- /examples/strapi-sqlite/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/examples/strapi-sqlite/docker-compose.yml -------------------------------------------------------------------------------- /images/strapi-alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/images/strapi-alpine/Dockerfile -------------------------------------------------------------------------------- /images/strapi-alpine/README.md: -------------------------------------------------------------------------------- 1 | # Strapi v4 2 | 3 | Based on alpine. -------------------------------------------------------------------------------- /images/strapi-alpine/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/images/strapi-alpine/docker-entrypoint.sh -------------------------------------------------------------------------------- /images/strapi-debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/images/strapi-debian/Dockerfile -------------------------------------------------------------------------------- /images/strapi-debian/README.md: -------------------------------------------------------------------------------- 1 | # Strapi v4 2 | 3 | Based on debian. -------------------------------------------------------------------------------- /images/strapi-debian/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naskio/docker-strapi/HEAD/images/strapi-debian/docker-entrypoint.sh -------------------------------------------------------------------------------- /release-versions/strapi-latest.txt: -------------------------------------------------------------------------------- 1 | 5.31.2 2 | --------------------------------------------------------------------------------