- 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.
21 lines
515 B
YAML
Executable File
21 lines
515 B
YAML
Executable File
name: thelounge
|
|
|
|
services:
|
|
thelounge:
|
|
image: thelounge/thelounge:latest
|
|
container_name: thelounge
|
|
restart: unless-stopped
|
|
networks:
|
|
- npm_default
|
|
# ports:
|
|
# The 'ports' section is commented out because access will be managed
|
|
# by a reverse proxy connected to the 'npm_default' network.
|
|
# - "9000:9000"
|
|
volumes:
|
|
# Persist TheLounge configuration and data
|
|
- /mnt/docker/local/thelounge/data:/var/opt/thelounge
|
|
|
|
networks:
|
|
npm_default:
|
|
external: true
|