Files
GoMFT/docker-compose.yaml
T
StarFleetCPTN a8b4588ecb feat: Implement comprehensive log viewer with advanced features
- Add new log viewer component in admin tools
- Support dynamic log file browsing and content display
- Implement custom scrollbar for log content
- Add log file refresh, download, and view capabilities
- Update environment variables for log configuration
- Enhance logging system with more flexible configuration options
2025-03-11 20:50:47 -07:00

34 lines
707 B
YAML

services:
gomft:
build:
context: .
dockerfile: Dockerfile
container_name: gomft
restart: unless-stopped
ports:
- "8080:8080"
volumes:
# Main data directory - contains DB and configs
- gomft-data:/app/data
# Separate backups directory
- gomft-backups:/app/backups
# For development, you can mount the source code
# - .:/app
environment:
- TZ=UTC
- DATA_DIR=/app/data
- BACKUP_DIR=/app/backups
- LOGS_DIR=/app/data/logs
# - LOG_LEVEL=info
networks:
- gomft-network
networks:
gomft-network:
driver: bridge
volumes:
gomft-data:
driver: local
gomft-backups:
driver: local