- Simplify daemon.json to minimal working version, removing problematic security settings that caused read-only filesystem issues - Update Gitea docker-compose.yml to working configuration: - Remove read-only filesystem (breaks s6-overlay init) - Keep user privilege dropping via USER_UID/USER_GID - Bind SSH port directly for Git operations - Maintain localhost binding for web interface
17 lines
433 B
JSON
17 lines
433 B
JSON
# Docker Daemon Configuration (Minimal Working Version)
|
|
# Deploy to: /etc/docker/daemon.json
|
|
#
|
|
# Setup commands:
|
|
# sudo cp config/docker/daemon.json /etc/docker/
|
|
# sudo systemctl restart docker
|
|
#
|
|
# Note: Removed problematic security settings that caused read-only filesystem issues.
|
|
# Only keeping essential logging configuration.
|
|
|
|
{
|
|
"log-driver": "json-file",
|
|
"log-opts": {
|
|
"max-size": "100m",
|
|
"max-file": "3"
|
|
}
|
|
} |