feat: Implement comprehensive service management features
- Added new components for managing services, including creation, editing, and listing. - Introduced stack management functionalities, allowing users to create, edit, and view stacks. - Implemented user management features, enabling user creation, editing, and listing. - Enhanced volume management with create and info functionalities. - Integrated network management capabilities, including listing and viewing networks. - Developed task management features for viewing and listing tasks. - Added support for Docker registry interactions, including authentication and repository management. - Implemented error handling and user feedback mechanisms throughout the application. - Established a robust routing system for navigating between different components and views. - Enhanced the overall user experience with improved UI components and state management.
This commit is contained in:
28
Oracle Homelab/ksam/compose/compose.yaml
Executable file
28
Oracle Homelab/ksam/compose/compose.yaml
Executable file
@@ -0,0 +1,28 @@
|
||||
name: kasm
|
||||
services:
|
||||
kasm:
|
||||
image: lscr.io/linuxserver/kasm:latest
|
||||
container_name: kasm
|
||||
privileged: true
|
||||
security_opt:
|
||||
- apparmor:rootlesskit #optional
|
||||
environment:
|
||||
- KASM_PORT=443
|
||||
# - DOCKER_HUB_USERNAME=USER #optional
|
||||
# - DOCKER_HUB_PASSWORD=PASS #optional
|
||||
# - DOCKER_MTU=1500 #optional
|
||||
volumes:
|
||||
- /mnt/docker/local/ksam/data/opt:/opt
|
||||
- /mnt/docker/local/ksam/data/profiles:/profiles #optional
|
||||
- /dev/input:/dev/input #optional
|
||||
- /run/udev/data:/run/udev/data #optional
|
||||
# ports:
|
||||
# - 3000:3000
|
||||
# - 443:443
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- npm_default
|
||||
|
||||
networks:
|
||||
npm_default:
|
||||
external: true
|
||||
Reference in New Issue
Block a user