Compare commits

..

2 Commits

Author SHA1 Message Date
d771027440 Merge 0308a36de0 into 84756ac1fd 2025-04-17 19:01:45 +02:00
0308a36de0 Update nginx.conf
removed listening on IPv6
2025-03-14 11:55:13 +01:00
3 changed files with 6 additions and 4 deletions

View File

@ -13,7 +13,7 @@ FROM alpine:3.18
COPY --from=builder /go/bin/envsubst /usr/bin/envsubst
ARG WALLABAG_VERSION=2.6.13
ARG WALLABAG_VERSION=2.6.12
RUN set -ex \
&& apk add --no-cache \
@ -84,8 +84,6 @@ ENV PATH="${PATH}:/var/www/wallabag/bin"
# Set console entry path
WORKDIR /var/www/wallabag
HEALTHCHECK CMD curl --fail --silent --show-error --user-agent healthcheck http://localhost/api/info || exit 1
EXPOSE 80
ENTRYPOINT ["/entrypoint.sh"]
CMD ["wallabag"]

View File

@ -131,6 +131,10 @@ services:
- "80"
volumes:
- /opt/wallabag/images:/var/www/wallabag/web/assets/images
healthcheck:
test: ["CMD", "wget" ,"--no-verbose", "--tries=1", "--spider", "http://localhost/api/info"]
interval: 1m
timeout: 3s
depends_on:
- db
- redis

View File

@ -35,7 +35,7 @@ http {
}
server {
listen [::]:80 ipv6only=off;
listen 80;
server_name _;
root /var/www/wallabag/web;