From 92a97e140fff6fd86f544299047d1ab62184685e Mon Sep 17 00:00:00 2001 From: alexz Date: Mon, 9 Mar 2026 18:40:46 +0000 Subject: [PATCH] revert: remove cockpit, keep nas-samba only --- apps/nas-samba/config.json | 9 ++++----- apps/nas-samba/docker-compose.json | 32 +----------------------------- 2 files changed, 5 insertions(+), 36 deletions(-) diff --git a/apps/nas-samba/config.json b/apps/nas-samba/config.json index f760ba6..18ea517 100644 --- a/apps/nas-samba/config.json +++ b/apps/nas-samba/config.json @@ -3,15 +3,14 @@ "name": "NAS Samba", "id": "nas-samba", "available": true, - "port": 9090, - "exposable": true, + "exposable": false, "dynamic_config": true, - "no_gui": false, + "no_gui": true, "tipi_version": 1, "version": "latest", "categories": ["network", "utilities"], - "description": "Samba SMB/CIFS file share for the /nas drive with Cockpit web UI for server management. Connect via SMB at \\\\192.168.0.15\\data with username alexz.", - "short_desc": "NAS file share with Cockpit management UI", + "description": "Samba SMB/CIFS file share for the /nas drive. Connect at \\\\192.168.0.15\\data with username alexz.", + "short_desc": "SMB file share for the NAS drive", "author": "servercontainers", "source": "https://github.com/ServerContainers/samba", "form_fields": [ diff --git a/apps/nas-samba/docker-compose.json b/apps/nas-samba/docker-compose.json index aa97fd2..fd8cc88 100644 --- a/apps/nas-samba/docker-compose.json +++ b/apps/nas-samba/docker-compose.json @@ -5,7 +5,7 @@ { "name": "nas-samba", "image": "servercontainers/samba:latest", - "isMain": false, + "isMain": true, "hostname": "nas", "addPorts": [ { @@ -43,36 +43,6 @@ "value": "[data]; path=/nas; valid users=alexz; browsable=yes; writable=yes; create mask=0664; directory mask=0775" } ] - }, - { - "name": "nas-cockpit", - "image": "quay.io/cockpit/ws:latest", - "isMain": true, - "internalPort": 9090, - "privileged": true, - "volumes": [ - { - "hostPath": "/run/systemd/private", - "containerPath": "/run/systemd/private", - "readOnly": false - }, - { - "hostPath": "/run/dbus", - "containerPath": "/run/dbus", - "readOnly": false - }, - { - "hostPath": "/", - "containerPath": "/host", - "readOnly": false - } - ], - "environment": [ - { - "key": "COCKPIT_KUBE_INSECURE", - "value": "true" - } - ] } ] }