Enviar arquivos para "/"

This commit is contained in:
2026-05-15 23:50:35 +00:00
commit 2bc09b2111
5 changed files with 226 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
version: "3.8"
# ============================================================
# ANTES DE USAR NO PORTAINER:
# No servidor via SSH, rode:
# git clone https://github.com/SEU_USER/SEU_REPO.git
# cd SEU_REPO
# docker build -t android-tv .
# Depois cole este arquivo no Portainer > Stacks > Add Stack
# ============================================================
services:
android-tv:
image: android-tv # imagem buildada localmente via SSH
container_name: android-tv
privileged: true
ports:
- "6080:6080" # noVNC — http://IP:6080/vnc_lite.html
- "5555:5555" # ADB
devices:
- /dev/kvm:/dev/kvm # KVM obrigatório para performance
shm_size: "4gb"
restart: unless-stopped
volumes:
- android-tv-data:/android/userdata # persiste dados do Android
volumes:
android-tv-data: