From 6651b5bde91ba47d61ef4fae63d02e1e4c463209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gytis=20Sto=C5=A1kevi=C4=8Dius?= Date: Wed, 26 Feb 2025 13:23:20 +0200 Subject: [PATCH] adjust healthcheck timeout --- compose.yml | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index 52e0cfa..3735189 100644 --- a/compose.yml +++ b/compose.yml @@ -7,7 +7,7 @@ services: test: "[ -f /data/ready ] || exit 1" interval: 60s retries: 5 - start_period: 300s + start_period: 480s timeout: 2s environment: VERSION: "11" @@ -28,4 +28,23 @@ services: volumes: - ./scripts:/oem - ./shared:/data - - ./custom.xml:/custom.xml \ No newline at end of file + - ./custom.xml:/custom.xml + networks: + vlan: + ipv4_address: 192.168.0.100 + vlan-1: + ipv4_address: 192.168.1.100 + +networks: + vlan: + driver: bridge + ipam: + driver: default + config: + - subnet: 192.168.0.0/24 + vlan-1: + driver: bridge + ipam: + driver: default + config: + - subnet: 192.168.1.0/24 \ No newline at end of file