From 512df7ff2bd66f30657c7dd4e6bde5cf06ac4ae1 Mon Sep 17 00:00:00 2001 From: David Personette Date: Sun, 23 Sep 2018 13:29:39 -0400 Subject: [PATCH] Dockerfile fix HEALTHCHECK #154 --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e0dcdf4..caf96ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ COPY samba.sh /usr/bin/ EXPOSE 137/udp 138/udp 139 445 HEALTHCHECK --interval=60s --timeout=15s \ - CMD smbclient -L '\\localhost\' -U 'guest%' -m SMB3 + CMD smbclient -L '\\localhost' -U '%' -m SMB3 VOLUME ["/etc/samba"] diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2cda3a1..59d061f 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -45,7 +45,7 @@ COPY samba.sh /usr/bin/ EXPOSE 137/udp 138/udp 139 445 HEALTHCHECK --interval=60s --timeout=15s \ - CMD smbclient -L '\\localhost\' -U 'guest%' -m SMB3 + CMD smbclient -L '\\localhost' -U '%' -m SMB3 VOLUME ["/etc/samba"] diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a7f2160..9f4b061 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -45,7 +45,7 @@ COPY samba.sh /usr/bin/ EXPOSE 137/udp 138/udp 139 445 HEALTHCHECK --interval=60s --timeout=15s \ - CMD smbclient -L '\\localhost\' -U 'guest%' -m SMB3 + CMD smbclient -L '\\localhost' -U '%' -m SMB3 VOLUME ["/etc/samba"]