# 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 |