File size: 597 Bytes
8bbbbda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Use the specified base image from the Docker Compose configuration
FROM dockurr/windows
# Metadata to describe the container
LABEL description="Windows container based on dockurr/windows image"
# Expose the ports specified in the Compose file
EXPOSE 8006 3389/tcp 3389/udp
# Note: The following configurations are typically set at runtime (e.g., via docker run or Docker Compose)
# - Device mapping: /dev/kvm
# - Capability: NET_ADMIN
# - Stop grace period: 2m
# - Restart policy: on-failure
# No additional setup is required since the Compose file doesn't specify custom commands or volumes |