services: emulatorjs: image: lscr.io/linuxserver/emulatorjs:latest container_name: emulatorjs environment: - PUID=1000 - PGID=1000 - TZ=Etc/UTC - SUBFOLDER=/ #optional volumes: - /path/to/config:/config - /path/to/data:/data ports: - 3000:3000 - 80:80 - 4001:4001 #optional restart: unless-stoppedhttps://docs.linuxserver.io/images/do..
services: kuma: image: louislam/uptime-kuma:latest container_name: uptime-kuma ports: - 3001:3001 volumes: - ./data:/app/data restart: always https://github.com/louislam/uptime-kuma/wiki HomeA fancy self-hosted monitoring tool. Contribute to louislam/uptime-kuma development by creating an account on GitHub.github.com
proxmox에 도커 설치root@pve:~# curl -fsSL https://get.docker.com -o get-docker.shroot@pve:~# sudo sh get-docker.sh## 만약 suso가 안될 경우 설치root@pve:~# apt-get install sudoroot@pve:~# systemctl enable dockerroot@pve:~# apt-get -y install docker-compose 표시할 디스크 확인root@pve:~# sudo fdisk -l | grep '^Disk /dev/sd'Disk /dev/sda: 465.76 GiB, 500107862016 bytes, 976773168 sectorsDisk /dev/sdb: 465.76 GiB, 50010..
version: '3.0'services: wallos: container_name: wallos image: bellamy/wallos:latest ports: - "8282:80/tcp" environment: TZ: 'Asia/Seoul' # Volumes store your data between container upgrades volumes: - './db:/var/www/html/db' - './logos:/var/www/html/images/uploads/logos' restart: unless-stopped https://hub.docker.com/r/bellamy/wallos Docker hub.dock..
# vi ~/.bashrcalias dps='sudo docker ps --format "table {{.ID}}\t{{.Names}}\t{{.Image}}\t{{.State}}\t{{.Status}}\t{{.RunningFor}}\t{{.Size}}"'source ~/.bashrc Before[darksharavim]docker ps -aCONTAINER ID IMAGE COMMAND CREATED STATUS PORTS ..