├── README.md └── linux-docker-compose.yml /README.md: -------------------------------------------------------------------------------- 1 | # linuxdockercodespace -------------------------------------------------------------------------------- /linux-docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.8' 2 | 3 | services: 4 | debian-vnc: 5 | image: debian:bullseye # Используется образ Debian 6 | ports: 7 | - "5901:5901" # Порт для VNC 8 | - "6080:6080" # Порт для noVNC 9 | environment: 10 | - VNC_PASSWORD=yourpassword # Пароль для подключения через VNC 11 | volumes: 12 | - /tmp/.X11-unix:/tmp/.X11-unix 13 | command: > 14 | bash -c " 15 | apt-get update && 16 | apt-get install -y xfce4 x11vnc xvfb curl git && 17 | startxfce4 & 18 | export DISPLAY=:0 && 19 | x11vnc -display :0 -passwd yourpassword -forever -bg 20 | " 21 | restart: always 22 | --------------------------------------------------------------------------------