mirror of https://github.com/portainer/portainer
fix(dockerfile): fix an issue with the data directory in Windows images
parent
ca4428cff2
commit
3861e964f4
|
@ -2,7 +2,7 @@ FROM microsoft/windowsservercore
|
||||||
|
|
||||||
COPY dist /
|
COPY dist /
|
||||||
|
|
||||||
VOLUME C:\\data
|
RUN mkdir C:\\data
|
||||||
|
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@ FROM microsoft/nanoserver
|
||||||
|
|
||||||
COPY dist /
|
COPY dist /
|
||||||
|
|
||||||
VOLUME C:\\data
|
RUN mkdir C:\\data
|
||||||
|
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue