-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile.windows
More file actions
41 lines (32 loc) · 1.13 KB
/
Dockerfile.windows
File metadata and controls
41 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Dockerfile baseado no container dockurr/windows existente
# Container ID: 46d607cb5bdc
# Imagem original: dockurr/windows:latest
FROM dockurr/windows:latest
# Metadados da imagem
LABEL org.opencontainers.image.created="2025-05-06T04:50:51.502Z"
LABEL org.opencontainers.image.description="Windows inside a Docker container."
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.source="https://github.com/dockur/windows"
LABEL org.opencontainers.image.title="Windows"
LABEL org.opencontainers.image.url="https://github.com/dockur/windows"
LABEL org.opencontainers.image.version="4.35"
# Variáveis de ambiente (baseadas no container inspecionado)
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV VERSION=11
ENV RAM_SIZE=4G
ENV CPU_CORES=2
ENV DISK_SIZE=64G
# Diretório de trabalho
WORKDIR /
# Volumes
VOLUME ["/storage"]
# Portas expostas
EXPOSE 3389/tcp
EXPOSE 8006/tcp
# Timeout para parada do container
STOPSIGNAL SIGTERM
# StopTimeout: 120 segundos (configurado via docker run)
# Entrypoint
ENTRYPOINT ["/usr/bin/tini", "-s", "/run/entry.sh"]
# Comando padrão (null no original)
CMD []