HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //opt/agentcloud/airbyte/docker-compose.debug.yaml
# Adds ports to the db and access to the temporal UI for debugging purposes.
# Expected to be used like this:
# VERSION=dev docker compose -f docker-compose.yaml -f docker-compose.debug.yaml up
version: "3.8"
x-logging: &default-logging
  options:
    max-size: "100m"
    max-file: "5"
  driver: json-file
services:
  db:
    ports:
      - 8011:5432
    networks:
      - airbyte_internal
      - airbyte_public
  airbyte-temporal-ui:
    image: temporalio/ui:2.21.3
    logging: *default-logging
    container_name: airbyte-temporal-ui
    restart: unless-stopped
    environment:
      - TEMPORAL_ADDRESS=airbyte-temporal:7233
      - TEMPORAL_CORS_ORIGINS=true
    ports:
      - 8012:8080
    networks:
      - airbyte_internal
      - airbyte_public
  worker:
    environment:
      - JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5006
      - DEBUG_CONTAINER_IMAGE=${DEBUG_CONTAINER_IMAGE}
      - DEBUG_CONTAINER_JAVA_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*
    ports:
      - 5006:5006
  server:
    # You will need to create a remote JVM debugging Run Configuration
    # If you're on a Mac you will need to obtain the IP address of the container
    # The value of JAVA_TOOL_OPTIONS should be the same as DEBUG_CONTAINER_JAVA_OPTS above
    environment:
      - JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5007
    ports:
      - 5007:5007
  airbyte-connector-builder-server:
    # You will need to create a remote JVM debugging Run Configuration
    # If you're on a Mac you will need to obtain the IP address of the container
    # The value of JAVA_TOOL_OPTIONS should be the same as DEBUG_CONTAINER_JAVA_OPTS above
    environment:
      - JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5008
    ports:
      - 5008:5008
  airbyte-api-server:
    # You will need to create a remote JVM debugging Run Configuration
    # If you're on a Mac you will need to obtain the IP address of the container
    # The value of JAVA_TOOL_OPTIONS should be the same as DEBUG_CONTAINER_JAVA_OPTS above
    environment:
      - JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5009
    ports:
      - 5009:5009