Fix deployment: Use local build by default and remove obsolete version

🔧 Deployment Fixes:
- Change default compose file to docker-compose.deploy-local.yml
- Remove obsolete 'version' attribute from compose files
- Ensures deployment works immediately without GitHub Container Registry

 Ready to Deploy:
- Use docker-compose.deploy-local.yml (builds locally)
- No more 'version is obsolete' warnings
- No dependency on GitHub Container Registry access

This makes deployment work out-of-the-box while GHCR image access is resolved.
This commit is contained in:
dlawler489 2026-04-21 10:41:01 +10:00
parent 8a3512e2f0
commit d45addad2f
3 changed files with 1 additions and 5 deletions

View file

@ -14,7 +14,7 @@ This guide shows how to deploy the Etsy Finance Tracker using container manageme
2. **In your container interface**: 2. **In your container interface**:
- Navigate to "Stacks" or "Deploy from Git" - Navigate to "Stacks" or "Deploy from Git"
- Paste the repository URL: `https://github.com/dlawler489/etsy-finance-tracker` - Paste the repository URL: `https://github.com/dlawler489/etsy-finance-tracker`
- Set the compose file path: `docker-compose.deploy.yml` - Set the compose file path: `docker-compose.deploy-local.yml`
- Stack name: `etsy-finance-tracker` - Stack name: `etsy-finance-tracker`
3. **If you get "unauthorized" error**: 3. **If you get "unauthorized" error**:

View file

@ -1,5 +1,3 @@
version: '3.8'
services: services:
# Nginx reverse proxy and static file server # Nginx reverse proxy and static file server
nginx: nginx:

View file

@ -1,5 +1,3 @@
version: '3.8'
services: services:
# Nginx reverse proxy and static file server # Nginx reverse proxy and static file server
nginx: nginx: