strapi config

This commit is contained in:
echo 2026-02-24 13:31:31 +01:00
parent ee676b3916
commit a9528582fd
2 changed files with 2 additions and 3 deletions

View File

@ -34,7 +34,7 @@ COPY --from=builder --chown=nodejs:nodejs /app/dist ./dist
COPY --from=builder --chown=nodejs:nodejs /app/public ./public
COPY --from=builder --chown=nodejs:nodejs /app/node_modules ./node_modules
COPY --from=builder --chown=nodejs:nodejs /app/package*.json ./
COPY --from=builder --chown=nodejs:nodejs /app/config ./config
COPY --from=builder --chown=nodejs:nodejs /app/dist/config ./config
# Create data directory
RUN mkdir -p /app/.tmp && \

View File

@ -114,11 +114,10 @@ services:
PORT: 1337
DATABASE_CLIENT: postgres
DATABASE_HOST: postgres-cms
DATABASE_PORT: 5432
DATABASE_PORT: '5432'
DATABASE_NAME: placebo_cms_db
DATABASE_USERNAME: placebo_user
DATABASE_PASSWORD: ${DATABASE_PASSWORD}
DATABASE_URL: postgres://placebo_user:${DATABASE_PASSWORD}@postgres-cms:5432/placebo_cms_db
DATABASE_SSL: 'false'
APP_KEYS: ${STRAPI_APP_KEYS}
API_TOKEN_SALT: ${STRAPI_API_TOKEN_SALT}