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:
parent
8a3512e2f0
commit
d45addad2f
3 changed files with 1 additions and 5 deletions
|
|
@ -14,7 +14,7 @@ This guide shows how to deploy the Etsy Finance Tracker using container manageme
|
|||
2. **In your container interface**:
|
||||
- Navigate to "Stacks" or "Deploy from Git"
|
||||
- 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`
|
||||
|
||||
3. **If you get "unauthorized" error**:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
# Nginx reverse proxy and static file server
|
||||
nginx:
|
||||
|
|
|
|||
|
|
@ -1,5 +1,3 @@
|
|||
version: '3.8'
|
||||
|
||||
services:
|
||||
# Nginx reverse proxy and static file server
|
||||
nginx:
|
||||
|
|
|
|||
Loading…
Reference in a new issue