From e5e8d074e0869a9f1c9829a235435ea0141e08ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Batista?= <83475304+jvbs013@users.noreply.github.com> Date: Mon, 3 Aug 2026 12:01:09 -0300 Subject: [PATCH] Define default and easypanel networks in Docker Compose Added 'networks' section to define default and easypanel networks in docker-compose.yml. --- plane/code/docker-compose.yml | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/plane/code/docker-compose.yml b/plane/code/docker-compose.yml index 65fb84e10..04b27e026 100644 --- a/plane/code/docker-compose.yml +++ b/plane/code/docker-compose.yml @@ -214,17 +214,20 @@ services: # Comment this if you already have a reverse proxy running proxy: - image: artifacts.plane.so/makeplane/plane-proxy:${APP_RELEASE:-stable} - environment: - <<: *proxy-env - deploy: - replicas: 1 - restart_policy: - condition: on-failure - depends_on: - - web - - api - - space + image: artifacts.plane.so/makeplane/plane-proxy:${APP_RELEASE:-stable} + environment: + <<: *proxy-env + deploy: + replicas: 1 + restart_policy: + condition: on-failure + depends_on: + - web + - api + - space + networks: + - default + - easypanel volumes: pgdata: @@ -235,3 +238,8 @@ volumes: logs_beat-worker: logs_migrator: rabbitmq_data: + +networks: + default: + easypanel: + external: true