diff --git a/Dockerfile.alpine b/Dockerfile.alpine index fce6aae..0cc4f2a 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -6,6 +6,8 @@ RUN apk add --no-cache --virtual .run-deps \ ca-certificates bash wget openssl \ && update-ca-certificates +# Install timezone +RUN apk add --update --no-cache tzdata # Configure Nginx and apply fix for very long server names RUN echo "daemon off;" >> /etc/nginx/nginx.conf \ diff --git a/docker-compose.yml b/docker-compose.yml index b76f0c0..53a2207 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ version: '2' + services: nginx-proxy: image: jwilder/nginx-proxy - container_name: nginx-proxy ports: - "80:80" volumes: @@ -11,4 +11,4 @@ services: whoami: image: jwilder/whoami environment: - - VIRTUAL_HOST=whoami.local + - VIRTUAL_HOST=whoami.local \ No newline at end of file