I would try to install the Caché client on these laptops, some machines at my old company had a similar problem and that solved the problem.  

Normally I create a volume in the docker-compose.yml file to share data between the container and my machine. I define the durable directory in this volume, so when I restart the container I don't lose the data stored.

version: '3.6'
services:
  iris:
    build: 
      context: ./iris
      dockerfile: Dockerfile
    restart: always
    container_name: iris
    ports:
      - 51773
      - 52773:52773
      - 1972:1972
      - 53773
    volumes:
      - ./iris/data:/durable 
    environment: 
      - ISC_DATA_DIRECTORY=/durable
    networks: 
      - production-network

Sorry, I changed to be more clear, but don't solve my problem. This command show to me the error below:
 

<METHOD DOES NOT EXIST> *%IsDefined,%ZEN.proxyObject

When I had problems with Cors I use overload of methods in my SuperClass to solve this problem.

ClassMethod HandleDefaultCorsRequest(pUrl As %String) As %Status [ Private ]
{
    Do %response.SetHeader("Access-Control-Allow-Origin","*")
    Do %response.SetHeader("Access-Control-Allow-Credentials","true")
    Do %response.SetHeader("Access-Control-Allow-Methods","GET, PUT, POST, DELETE, PATCH, OPTIONS")
    Do %response.SetHeader("Access-Control-Allow-Headers","Access-Control-*, Content-Type, Authorization, Accept, Accept-Language, X-Requested-With, Origin")
    
    Quit $$$OK
}

I think this can solve your problem

SET DATE="20201121090000"

WRITE $ZD($ZDH($E(DATE,1,8),8),3) // DAY
WRITE $E(DATE,9,10)_":"_$E(DATE,11,12)_":"_$E(DATE,13,14) // HOUR

Hello Brendan,

I faced the same problem other day.
That was the query: "SELECT PROE,DESP,ID FROM ZVBMAPEAMENTO.SVINFOUVND WHERE JOB=1224 GROUP BY PROE". All is %String.

Att. Flávio.

Hello Robert,

I faced the same problem other day.
That was the query: "SELECT PROE,DESP,ID FROM ZVBMAPEAMENTO.SVINFOUVND WHERE JOB=1224 GROUP BY PROE"

Att. Flávio.

Hi Robert,

Do you know some article who teach how to create the Web Service to make a call? The Caché PHP module, didn't work for me, because works only locally.

Regards, 
Flávio.