-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinux.yml
More file actions
43 lines (40 loc) · 933 Bytes
/
linux.yml
File metadata and controls
43 lines (40 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# ⚠️ IMPORTANTE: Antes de ejecutar docker-compose up
# Asegúrate de seguir: https://github.com/jephersonRD
#
# Ejecuta este script para verificar:
# bash check_github_follow.sh || exit 1
version: '3.8'
services:
linux-desktop:
image: linuxserver/webtop:ubuntu-kde
container_name: linux
environment:
- PUID=1000
- PGID=1000
- TZ=America/Santo_Domingo
- KEYBOARD=en-us-qwerty
- WEBPAGE_TITLE=Ubuntu KDE
- RESOLUTION=1920x1080
- SUDO_PASSWORD=123456
- NOVNC_ENABLE=true
- VNC_PASSWORD=vnc123456
ports:
- "3000:3000"
- "5900:5900"
volumes:
- linux-data:/config
- /dev/shm:/dev/shm
cap_add:
- SYS_ADMIN
devices:
- /dev/fuse
security_opt:
- seccomp:unconfined
deploy:
resources:
limits:
cpus: '2.0'
memory: 16G
restart: unless-stopped
volumes:
linux-data: