watchtower(ft. 컨테이너 자동 업데이트)
# Virtualation/Docker2024. 4. 19. 08:44watchtower(ft. 컨테이너 자동 업데이트)

## docker run ## [darksharavim]docker run --name="watchtower" -d --restart=always -v /var/run/docker.sock:/var/run/docker.sock -e TZ=Asia/Seoul containrrr/watchtower --interval 10 ## docker-compose ## version: "3" services: watchtower: image: containrrr/watchtower volumes: - /var/run/docker.sock:/var/run/docker.sock https://containrrr.dev/watchtower/ Watchtowercontainrrr.dev https://svrforum.com..

NPM이용 와일드카드 인증서 발급(ft. cloudflare)
# Virtualation/Docker2024. 4. 18. 13:33NPM이용 와일드카드 인증서 발급(ft. cloudflare)

클라우드플레어 API키 발급 클라우드플레어 로그인 후 아래 페이지로 이동 https://dash.cloudflare.com/profile/api-tokens 발급받은 키 확인[darksharavim]curl -X GET "https://api.cloudflare.com/client/v4/user/tokens/verify" \ > -H "Authorization: Bearer 123456789qwerasdzxc123456789" \ > -H "Content-Type:application/json" {"result":{"id":"417dffc3d4d75e49a5391c1756ecea56","status":"active"},"success":true,"errors":[],"messages":[{"code":1..

windows2000 install(ft. docker)
# Virtualation/Docker2024. 4. 9. 08:27windows2000 install(ft. docker)

version: "3"services: windows:     image: hectorm/qemu-win2000    container_name: qemu-win2000    devices:     - /dev/kvm    ports:     - 3389:3389/tcp     - 5900:5900/tcp     - 6080:6080/tcp    https://github.com/hectorm/docker-qemu-win2000 GitHub - hectorm/docker-qemu-win2000: A Docker image for Windows 2000 Advanced Server with SP4.A Docker image for Windows 2000 Advanced Server with SP4. - ..

NPM install(ft. docker)
# Virtualation/Docker2024. 4. 8. 08:53NPM install(ft. docker)

https://nginxproxymanager.com/ Nginx Proxy Manager Docker container and built in Web Application for managing Nginx proxy hosts with a simple, powerful interface, providing free SSL support via Let's Encrypt nginxproxymanager.com 시놀로지 vmm에 설치 version: '3' services: app: image: 'jc21/nginx-proxy-manager:latest' ports: - '80:80' - '81:81' - '443:443' environment: DB_MYSQL_HOST: "db" DB_MYSQL_PORT:..

windows(xp~11) install(ft. docker)
# Virtualation/Docker2024. 4. 4. 08:32windows(xp~11) install(ft. docker)

설치환경 시퓨 AMD 라노 A10 proxmox 설치 xenology 설치 docker 설치 헤놀로지 vm설치시 프로세스를 호스트로 설정해야 중첩가상화가 먹힘! docker-compose.yml version: "3" services: windows: image: dockurr/windows container_name: windows environment: VERSION: "winxp" devices: - /dev/kvm cap_add: - NET_ADMIN ports: - 8006:8006 - 3389:3389/tcp - 3389:3389/udp stop_grace_period: 2m restart: on-failure docker run docker run -it --rm --name windows ..

image