From ed91edb2e8fc4726c25372e88e21c73c7f3176d9 Mon Sep 17 00:00:00 2001 From: "lucas.mathieu" Date: Sun, 28 Dec 2025 19:55:00 +0100 Subject: [PATCH] feat(npmplus): use external network and expose ports --- npmplus/compose.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/npmplus/compose.yaml b/npmplus/compose.yaml index bf9cdd6..160d502 100644 --- a/npmplus/compose.yaml +++ b/npmplus/compose.yaml @@ -4,7 +4,11 @@ services: container_name: npmplus image: docker.io/zoeyvid/npmplus:latest # or ghcr.io/zoeyvid/npmplus:latest restart: unless-stopped - network_mode: host +# network_mode: host + ports: + - "80:80" + - "81:81" + - "443:443" # ipc: host # required when you want to use the openappsec attachment module # cap_add: # required if you set NGINX_QUIC_BPF to true # - BPF # required if you set NGINX_QUIC_BPF to true @@ -218,3 +222,8 @@ services: volumes: data: {} + +networks: + default: + name: npmplus + external: true