mirror of
https://github.com/wallabag/docker.git
synced 2026-02-27 20:27:40 +01:00
Compare commits
17 Commits
a005170de7
...
2.6.14
| Author | SHA1 | Date | |
|---|---|---|---|
| 480d3833bc | |||
| 42981284a6 | |||
| 91a399d3bb | |||
| ccb4b25562 | |||
| c8b95ac15b | |||
| 25a2e3de71 | |||
| b522c24645 | |||
| 2ed6cbca1c | |||
| 9dd6c5b52b | |||
| 0e11114336 | |||
| 6379d9b90f | |||
| e1fafcc31f | |||
| 7d2f4919c6 | |||
| 096ea7f79c | |||
| 2c1ec84dc7 | |||
| 488814d187 | |||
| 3808b524fc |
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repo
|
- name: Check out the repo
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
|
|
||||||
- name: Log in to Docker Hub
|
- name: Log in to Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
|
|||||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -24,12 +24,12 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: "Checkout"
|
- name: "Checkout"
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v5
|
||||||
with:
|
with:
|
||||||
fetch-depth: 2
|
fetch-depth: 2
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: 3.11
|
python-version: 3.11
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
ARG COMPOSER_VERSION=2.5.8
|
ARG COMPOSER_VERSION=2.8.10
|
||||||
|
|
||||||
FROM composer:$COMPOSER_VERSION as composer
|
FROM composer:$COMPOSER_VERSION as composer
|
||||||
|
|
||||||
@ -7,13 +7,13 @@ FROM golang:alpine as builder
|
|||||||
# envsubst from gettext can not replace env vars with default values
|
# envsubst from gettext can not replace env vars with default values
|
||||||
# this package is not available for ARM32 and we have to build it from source code
|
# this package is not available for ARM32 and we have to build it from source code
|
||||||
# flag -ldflags "-s -w" produces a smaller executable
|
# flag -ldflags "-s -w" produces a smaller executable
|
||||||
RUN go install -ldflags "-s -w" -v github.com/a8m/envsubst/cmd/envsubst@v1.3.0
|
RUN go install -ldflags "-s -w" -v github.com/a8m/envsubst/cmd/envsubst@v1.4.3
|
||||||
|
|
||||||
FROM alpine:3.18
|
FROM alpine:3.19
|
||||||
|
|
||||||
COPY --from=builder /go/bin/envsubst /usr/bin/envsubst
|
COPY --from=builder /go/bin/envsubst /usr/bin/envsubst
|
||||||
|
|
||||||
ARG WALLABAG_VERSION=2.6.12
|
ARG WALLABAG_VERSION=2.6.14
|
||||||
|
|
||||||
RUN set -ex \
|
RUN set -ex \
|
||||||
&& apk add --no-cache \
|
&& apk add --no-cache \
|
||||||
|
|||||||
@ -35,8 +35,7 @@ http {
|
|||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen [::]:80 ipv6only=off;
|
||||||
listen [::0]:80;
|
|
||||||
server_name _;
|
server_name _;
|
||||||
root /var/www/wallabag/web;
|
root /var/www/wallabag/web;
|
||||||
|
|
||||||
|
|||||||
@ -36,11 +36,11 @@ parameters:
|
|||||||
rss_limit: 50
|
rss_limit: 50
|
||||||
|
|
||||||
# RabbitMQ processing
|
# RabbitMQ processing
|
||||||
rabbitmq_host: localhost
|
rabbitmq_host: ${SYMFONY__ENV__RABBITMQ_HOST:-localhost}
|
||||||
rabbitmq_port: 5672
|
rabbitmq_port: ${SYMFONY__ENV__RABBITMQ_PORT:-5672}
|
||||||
rabbitmq_user: guest
|
rabbitmq_user: ${SYMFONY__ENV__RABBITMQ_USER:-guest}
|
||||||
rabbitmq_password: guest
|
rabbitmq_password: ${SYMFONY__ENV__RABBITMQ_PASSWORD:-guest}
|
||||||
rabbitmq_prefetch_count: 10
|
rabbitmq_prefetch_count: ${SYMFONY__ENV__RABBITMQ_PREFETCH_COUNT:-10}
|
||||||
|
|
||||||
# Redis processing
|
# Redis processing
|
||||||
redis_scheme: ${SYMFONY__ENV__REDIS_SCHEME:-tcp}
|
redis_scheme: ${SYMFONY__ENV__REDIS_SCHEME:-tcp}
|
||||||
|
|||||||
Reference in New Issue
Block a user