Fix Docker permissions check: replace 'groups' with 'id' command

- Synology NAS doesn't have 'groups' command
- Use 'id' command instead which is available on all Unix systems
- This fixes the deployment pipeline error

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
happybell80 2025-07-07 23:42:48 +09:00
parent 0de5312b6d
commit cb2de53935

View File

@ -54,7 +54,7 @@ jobs:
- name: Check Docker permissions
run: |
ssh -p ${{ secrets.NAS_PORT }} admin@${{ secrets.NAS_HOST }} \
"ls -la /var/run/docker.sock && groups"
"ls -la /var/run/docker.sock && id"
- name: Remote docker-compose up
run: |