Sage 10, ACF Blocks, Acorn, and Proxy MySQL to local?

I’m working to be able to use ACF Blocks with sage 10 on devkinsta. Log1x/acf-composer seems to be the best solution, but when I try to run any acorn commands (ie $ wp acorn acf:field Example), I get

php_network_getaddresses: getaddrinfo failed: nodename nor servname provided, or not known in /Users/jdub/DevKinsta/public/yodub/wp-includes/wp-db.php on line 1653

It seems like the issue is that acorn wants to connected to the mysql db to do it’s thing, so I’ve been trying to create a proxy tunnel to the devkinsta_db mysql docker container by using bscheshir/mysql-proxy but I haven’t figured it out. I’ve been trying with this docker-compose. Any recommendations anyone can give me on sage 10 with ACF pro on devkinsta? Or with proxying the db from docker to local so acorn can do it’s magic?

version: ‘2’

services:
db:
image: bscheshir/mysql-proxy
expose:
- “3306” #for service php
ports:
- “3306:15200”
restart: always
volumes:
- ./mysql-proxy-conf:/opt/mysql-proxy/conf
environment:
PROXY_DB_PORT: 3306
REMOTE_DB_HOST: localhost
REMOTE_DB_PORT: 15200
LUA_SCRIPT: “/opt/mysql-proxy/conf/main.lua”

@SendItAgile have you tried installing it on the devkinsta_fpm container?
Never used Log1x/acf-composer before, but it seems like you are trying to run it from local env, not docker.