Add stack.env

This commit is contained in:
TheMaddax 2025-07-03 09:29:44 -05:00
parent 6a6a644498
commit 7483906206
4 changed files with 44 additions and 38 deletions

View file

@ -1,36 +1,34 @@
# Active Context
## Current Task
Adding new meeting minutes to the website:
- Added February 8, 2025 Board Meeting minutes (minutes-02082025.pdf)
- Maintained October 17, 2024 Board Meeting minutes
- Maintained September 14, 2024 and August 6, 2024 Membership Meeting minutes
- Updated Minutes.tsx component to display all entries
COMPLETED: Fixed Portainer repository deployment issue for CACHEBUST mechanism
## Recent Changes
1. Modified Minutes.tsx to include new meeting entry
2. Fixed date sorting issue:
- Updated sorting logic to convert date strings to Date objects
- Ensures proper chronological sorting regardless of date format
3. File structure:
- PDF file location: client/public/minutes/minutes-02082025.pdf
- Component location: client/src/components/Minutes.tsx
1. Added 6.jpg to rotating photo carousel:
- Updated ImageCarousel.tsx to include /photos/6.jpg in images array
- Photo now appears in 5-second rotation sequence
2. Replaced PDF files with corrected versions (user confirmed pushed to git)
3. Fixed CACHEBUST deployment issue:
- Created stack.env file in repository with CACHEBUST=1736003093
- Updated docker-compose.yml to reference stack.env file
- Repository deployments in Portainer require stack.env to be in Git repo
- MCP query revealed Portainer creates virtual stack.env for UI deployments but needs physical file for repository deployments
## Next Steps
1. Deploy changes through Portainer:
- Previous solution (updating VERSION) was already tried and didn't work
- New solution implemented: Added CACHEBUST build argument to force rebuild
* Added build arg CACHEBUST to docker-compose.yml
* Modified Dockerfile to use the CACHEBUST argument
- Next actions:
a. Commit and push changes to git repository
b. In Portainer, go to Stacks > mcdi-website
c. Set CACHEBUST environment variable to current timestamp (e.g., CACHEBUST=1616789123)
d. Click "Pull and redeploy" or equivalent option
e. Wait for container to rebuild (~2 minutes)
f. If still not working, try alternative solutions:
- Modify Portainer stack settings to use "Build" instead of "Pull"
- Check Portainer webhook URL configuration
1. Commit and push final changes:
- git add stack.env docker-compose.yml
- git commit -m "Add stack.env for Portainer CACHEBUST deployment"
- git push
2. In Portainer: Click "Pull and redeploy" or use webhook
3. Verify deployment includes:
- New 6.jpg in photo carousel
- Corrected PDF files
- All recent code changes
## Solution Summary
- Problem: Portainer repository deployments require stack.env file in Git repo
- Solution: Created stack.env with CACHEBUST variable and updated docker-compose.yml
- Future: Update CACHEBUST value in stack.env and push to force rebuilds
## Technical Notes
- Website uses React with TypeScript

View file

@ -19,23 +19,29 @@
- Reordered minutes data from newest (top) to oldest (bottom) in the source array
- Fixed date sorting issue by converting strings to Date objects for comparison
2. Deployment (in progress):
- Changes pushed to git repository
- Encountered issues with Portainer not detecting git changes
- Previous solution (updating VERSION from 1.7 to 1.8 to 1.9) didn't work
- New solution implemented: Added CACHEBUST build argument to force rebuild
* Added build arg to docker-compose.yml
* Modified Dockerfile to use the CACHEBUST argument
- Ready for commit, push, and redeploy in Portainer with CACHEBUST variable
2. Added 6.jpg to photo carousel:
- Updated ImageCarousel.tsx to include new photo in rotation
- Photo appears in 5-second rotation sequence with existing photos
- User replaced two PDF files with corrected versions
3. Fixed Portainer deployment issue:
- Identified repository deployment requires stack.env file in Git repo
- Created stack.env file with CACHEBUST=1736003093
- Updated docker-compose.yml to reference stack.env file
- Used MCP query to understand Portainer stack.env behavior
- Solution enables force rebuilds by updating CACHEBUST value and pushing to Git
## What's Left
1. Immediate:
- Commit and push docker-compose.yml and Dockerfile changes
- Deploy changes through Portainer with CACHEBUST environment variable
- Verify all meeting minutes are accessible
- Test PDF viewing on desktop and mobile
- Commit and push stack.env and docker-compose.yml changes
- Deploy changes through Portainer (pull and redeploy)
- Verify deployment includes:
* New 6.jpg in photo carousel
* Corrected PDF files
* All recent code changes
2. Future Considerations:
- Monitor for additional meeting minutes
- Consider pagination if minutes list grows large
- Potential archive feature for older minutes
- Use stack.env CACHEBUST method for future forced deployments

View file

@ -14,6 +14,7 @@ services:
- VERSION=1.11
env_file:
- .env
- stack.env
networks:
- caddy_network

1
stack.env Normal file
View file

@ -0,0 +1 @@
CACHEBUST=1736003093