Fix permission denied error on Unraid deployment
Resolved Docker container startup failures on Unraid /boot partition. Changes: - Remove development volume mount from docker-compose.yml - Container now uses files baked into image during build - Remove obsolete docker-compose version attribute - Add permission fix in deploy.sh for /boot partition The volume mount was causing permission issues by exposing /boot files with restrictive permissions directly to the container. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
discord-stock-bot:
|
||||
build: .
|
||||
@@ -9,9 +7,6 @@ services:
|
||||
- .env
|
||||
environment:
|
||||
- TZ=America/New_York
|
||||
volumes:
|
||||
# Mount source code for development (comment out for production)
|
||||
- ./:/app
|
||||
logging:
|
||||
driver: "json-file"
|
||||
options:
|
||||
|
||||
Reference in New Issue
Block a user