Skip to content

Commit 1ec71b1

Browse files
committed
Replace ipvlan with dedicated bridge network for glitchtip-worker
Made-with: Cursor
1 parent 2cb2a03 commit 1ec71b1

2 files changed

Lines changed: 4 additions & 13 deletions

File tree

apps/glitchtip/.env.example

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ CELERY_WORKER_MAX_TASKS_PER_CHILD=10000
2525
# Set to True to allow new user registrations; disable once initial accounts exist
2626
ENABLE_USER_REGISTRATION=False
2727

28-
# Host network interface for the worker's ipvlan LAN network (e.g. eth0, ens3)
29-
# Run 'ip link' on the host to find the right interface name.
30-
NETWORK_INTERFACE=eth0
31-
3228
# Image versions
3329
#IMAGE_VERSION=latest
3430
#REDIS_IMAGE_VERSION=7-alpine

apps/glitchtip/docker-compose.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ services:
5454
- db
5555
- redis
5656
- mail
57-
- lan
57+
- worker
5858
depends_on:
5959
glitchtip-redis:
6060
condition: service_healthy
@@ -86,11 +86,6 @@ networks:
8686
name: postfix-net
8787
redis:
8888
name: glitchtip-redis-net
89-
lan:
90-
driver: ipvlan
91-
driver_opts:
92-
parent: "${NETWORK_INTERFACE}"
93-
# ipam:
94-
# config:
95-
# - subnet: 192.168.1.0/24
96-
# gateway: 192.168.1.1
89+
worker:
90+
driver: bridge
91+
name: glitchtip-worker-net

0 commit comments

Comments
 (0)