mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-29 11:05:35 +02:00
* feat(blueprint): strapi template * feat: strapi meta.json * fix: strapi extra colon * fix: docker syntax for expose and depends_on * fix: change image base * fix: strapi healthcheck * fix: add jwt secret and admin jwt secret to strapi * fix: strapi healthcheck start interval * fix(template): strapi v5.33.0 * Update docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Co-authored-by: Mauricio Siu <siumauricio@icloud.com>
59 lines
1.4 KiB
YAML
59 lines
1.4 KiB
YAML
# Self-host guide:
|
|
# - https://strapi.io/blog/how-to-self-host-your-headless-cms-using-docker-compose
|
|
|
|
services:
|
|
strapi:
|
|
image: elestio/strapi-production:v5.33.0
|
|
environment:
|
|
# https://docs.strapi.io/cms/configurations/environment
|
|
NODE_ENV: production
|
|
STRAPI_TELEMETRY_DISABLED: true
|
|
STRAPI_PLUGIN_I18N_INIT_LOCALE_CODE: en
|
|
FAST_REFRESH: true
|
|
JWT_SECRET: ${JWT_SECRET}
|
|
ADMIN_JWT_SECRET: ${ADMIN_JWT_SECRET}
|
|
DATABASE_CLIENT: postgres
|
|
DATABASE_HOST: strapi_postgres
|
|
DATABASE_PORT: 5432
|
|
DATABASE_NAME: strapi
|
|
DATABASE_USERNAME: strapi
|
|
DATABASE_PASSWORD: ${POSTGRES_PASSWORD}
|
|
volumes:
|
|
- strapi_data:/srv/app
|
|
expose:
|
|
- 1337
|
|
depends_on:
|
|
- strapi_postgres
|
|
healthcheck:
|
|
test:
|
|
- CMD
|
|
- wget
|
|
- "-q"
|
|
- "--spider"
|
|
- "http://127.0.0.1:1337"
|
|
start_period: 3s
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
|
|
strapi_postgres:
|
|
image: postgres:18
|
|
environment:
|
|
POSTGRES_DB: strapi
|
|
POSTGRES_USER: strapi
|
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
|
volumes:
|
|
- strapi_postgres_data:/var/lib/postgresql
|
|
healthcheck:
|
|
test:
|
|
- CMD-SHELL
|
|
- "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"
|
|
start_period: 3s
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
|
|
volumes:
|
|
strapi_data:
|
|
strapi_postgres_data:
|