# Expected outcome: Container starts successfully with proper nginx config mount # - SYSTEM_SERVICES_ACTIVE_CONFIG shows as writable and mounted # - No configuration warnings for nginx config path # - Custom PORT configuration should work when nginx config is writable services: netalertx: network_mode: host build: context: ../../../ dockerfile: Dockerfile image: netalertx-test container_name: netalertx-test-mount-active_config_mounted cap_drop: - ALL cap_add: - NET_ADMIN - NET_RAW - NET_BIND_SERVICE environment: LISTEN_ADDR: 0.0.0.0 PORT: 9999 # Use non-default port to test all paths APP_CONF_OVERRIDE: 20212 ALWAYS_FRESH_INSTALL: true NETALERTX_DEBUG: 0 SYSTEM_SERVICES_ACTIVE_CONFIG: /tmp/nginx/active-config volumes: - type: volume source: test_netalertx_data target: /data read_only: false - type: volume source: test_system_services_active_config target: /tmp/nginx/active-config read_only: false tmpfs: - "/tmp:uid=20211,gid=20211,mode=1700,rw,noexec,nosuid,nodev,async,noatime,nodiratime" volumes: test_netalertx_data: test_system_services_active_config: