From 60b35b5db8a81ef5ca719d2c0f0b1093e2c07d77 Mon Sep 17 00:00:00 2001 From: Meng Sen Date: Thu, 17 Oct 2024 10:37:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Meng Sen --- apps/rsshub/2024/docker-compose.yml | 39 ++++++++++++++--------------- 1 file changed, 19 insertions(+), 20 deletions(-) diff --git a/apps/rsshub/2024/docker-compose.yml b/apps/rsshub/2024/docker-compose.yml index 956986313..47571fed2 100644 --- a/apps/rsshub/2024/docker-compose.yml +++ b/apps/rsshub/2024/docker-compose.yml @@ -3,6 +3,25 @@ networks: external: true services: + browserless: + image: browserless/chrome + container_name: ${CONTAINER_NAME}-browserless + labels: + createdBy: "Apps" + restart: always + networks: + - 1panel-network + ulimits: + core: + hard: 0 + soft: 0 + expose: + - 3000 + healthcheck: + test: [ "CMD", "curl", "-f", "http://localhost:3000/pressure" ] + interval: 30s + timeout: 10s + retries: 3 rsshub: image: diygod/rsshub:2024-10-16 container_name: ${CONTAINER_NAME} @@ -39,23 +58,3 @@ services: interval: 30s timeout: 10s retries: 3 - - browserless: - image: browserless/chrome - container_name: ${CONTAINER_NAME}-browserless - labels: - createdBy: "Apps" - restart: always - networks: - - 1panel-network - ulimits: - core: - hard: 0 - soft: 0 - expose: - - 3000 - healthcheck: - test: [ "CMD", "curl", "-f", "http://localhost:3000/pressure" ] - interval: 30s - timeout: 10s - retries: 3