Browse Source

Replaced volumes with vol

feature/startup-from-labels
Fernando Alegre 5 years ago
parent
commit
9e449976d6
  1. 8
      src/mailsrv/Containerfile

8
src/mailsrv/Containerfile

@ -10,9 +10,9 @@ LABEL deployopts="\
-p 587:587 \
-p 143:143 \
-p 993:993 \
-v /srv/volumes/mailsrv/db:/vol/db \
-v /srv/volumes/mailsrv/mail:/vol/mail \
-v /srv/volumes/mailsrv/ssl:/vol/ssl:ro"
-v /srv/vol/mailsrv/db:/vol/db \
-v /srv/vol/mailsrv/mail:/vol/mail \
-v /srv/vol/mailsrv/ssl:/vol/ssl:ro"
# Build Variables
# uid that the files owner user should have
@ -70,4 +70,4 @@ RUN ln -s /vol/mail /var/mail/virtual
RUN mkdir -p /vol/db
# set /vol/db as working directory
WORKDIR /vol/db
WORKDIR /vol/db

Loading…
Cancel
Save