Merge pull request #4277 from statickidz/add-windows-macos-templates

Add Windows & MacOS templates
This commit is contained in:
🏔️ Peak
2024-11-22 22:42:04 +01:00
committed by GitHub
4 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# documentation: https://github.com/dockur/macos
# slogan: Run macOS in a containerized environment.
# tags: macos, virtualization, container, os
# logo: svgs/macos.svg
# port: 8006
services:
macos:
image: dockurr/macos
volumes:
- macos-storage:/storage
environment:
- SERVICE_FQDN_MACOS_8006
- VERSION=15
cap_add:
- NET_ADMIN
stop_grace_period: 2m
healthcheck:
test: ["CMD", "nc", "-z", "127.0.0.1", "8006"]
interval: 2s
timeout: 10s
retries: 10

View File

@@ -0,0 +1,22 @@
# documentation: https://github.com/dockur/windows
# slogan: Run Windows in a containerized environment.
# tags: windows, virtualization, container, os
# logo: svgs/windows.svg
# port: 8006
services:
windows:
image: dockurr/windows
volumes:
- windows-storage:/storage
environment:
- SERVICE_FQDN_WINDOWS_8006
- VERSION=11
cap_add:
- NET_ADMIN
stop_grace_period: 2m
healthcheck:
test: ["CMD", "nc", "-z", "127.0.0.1", "8006"]
interval: 2s
timeout: 10s
retries: 10