- Simplified initialization logic in init.py - Consolidated testing_mode assignment - Removed unnecessary else statements - Created UIManager class to handle UI-related tasks - Modularized input frame creation, table frame creation, and graph frame creation - Enhanced edit window creation with better organization and error handling - Updated data management methods to improve clarity and maintainability - Improved logging for better debugging and tracking of application flow
15 lines
341 B
YAML
15 lines
341 B
YAML
services:
|
|
thechart:
|
|
build: .
|
|
image: ${IMAGE}
|
|
container_name: 'thechart'
|
|
stdin_open: true
|
|
working_dir: '/app'
|
|
tty: true
|
|
volumes:
|
|
- /tmp/.X11-unix:/tmp/.X11-unix
|
|
- ${XAUTHORITY:-~/.Xauthority}:/tmp/.docker.xauth:rw
|
|
environment:
|
|
- DISPLAY=${DISPLAY:-:0}
|
|
- XAUTHORITY=/tmp/.docker.xauth
|