File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1- version : ' 3.8'
2-
31services :
42 postgres :
53 image : postgres:18-alpine
@@ -31,7 +29,7 @@ services:
3129 - NODE_ENV=production
3230 - PORT=3000
3331 - DEPLOYSTACK_FRONTEND_URL=http://localhost:8080
34- - DEPLOYSTACK_ENCRYPTION_SECRET=${DEPLOYSTACK_ENCRYPTION_SECRET}
32+ - DEPLOYSTACK_ENCRYPTION_SECRET=${DEPLOYSTACK_ENCRYPTION_SECRET:-CHANGE_ME_HERE }
3533 - POSTGRES_HOST=postgres
3634 - POSTGRES_PORT=5432
3735 - POSTGRES_DATABASE=deploystack
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ RUN npm install --omit=dev --no-package-lock
1212# Copy pre-built files
1313COPY services/backend/dist ./dist
1414
15+ # Copy Drizzle migrations (required for database schema creation)
16+ COPY services/backend/drizzle ./drizzle
17+
1518# Create the shared directory structure
1619RUN mkdir -p /shared/public/img/
1720COPY services/shared/public/img/favicon.ico /shared/public/img/
You can’t perform that action at this time.
0 commit comments