Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Windows & MacOS templates #4277

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions public/svgs/macos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions public/svgs/windows.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions templates/compose/macos.yaml
Original file line number Diff line number Diff line change
@@ -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
22 changes: 22 additions & 0 deletions templates/compose/windows.yaml
Original file line number Diff line number Diff line change
@@ -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