- Changed window size to mobile phone format (400x800) - Removed width condition for ActiveProxyFooter - now always visible - Added run-umbrix.sh launch script with icon copying - Stats cards now display on all screen sizes
33 lines
751 B
YAML
33 lines
751 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
update-server:
|
|
image: php:8.3-cli
|
|
container_name: umbrix-update-server
|
|
working_dir: /var/www
|
|
command: php -S 0.0.0.0:8000
|
|
ports:
|
|
- "8000:8000"
|
|
volumes:
|
|
# Код сервера (read-only)
|
|
- ./update-server:/var/www:ro
|
|
# Файлы обновлений (read-write, persistent)
|
|
- umbrix-downloads:/var/www/downloads
|
|
# Логи (read-write)
|
|
- umbrix-logs:/var/www/logs
|
|
restart: unless-stopped
|
|
networks:
|
|
- umbrix-network
|
|
|
|
networks:
|
|
umbrix-network:
|
|
driver: bridge
|
|
|
|
volumes:
|
|
# Постоянное хранилище для APK файлов
|
|
umbrix-downloads:
|
|
driver: local
|
|
# Логи сервера
|
|
umbrix-logs:
|
|
driver: local
|