Docker Install Configuration

I’ve installed OpenEMR via a configuration File on a Docker Image. The code is the standard example from github:

version: ‘3.1’

services:

mysql:

restart: always

image: mariadb:10.5

command: ['mysqld','--character-set-server=utf8mb4']

volumes:

- databasevolume:/var/lib/mysql

environment:

  MYSQL_ROOT_PASSWORD: root

openemr:

restart: always

image: openemr/openemr:6.0.0

ports:

- 80:80

- 443:443

volumes:

- logvolume01:/var/log

- sitevolume:/var/www/localhost/htdocs/openemr/sites

environment:

  OPENEMR_SETTING_rest_api: 1

  MYSQL_HOST: mysql

  MYSQL_ROOT_PASS: root

  MYSQL_USER: openemr

  MYSQL_PASS: openemr

  OE_USER: admin

  OE_PASS: pass

depends_on:

- mysql

volumes:

logvolume01: {}

sitevolume: {}

databasevolume: {}

I am trying to get the option under settings-global-connectors with an option for API’s but one I don’t see global and under my connectors tab I’m not seeing the option for API calls? I read you are supposed to pass this “OPENEMR_SETTING_rest_api: 1” into the config but that isn’t working. Any suggestions? Thanks in advance

hi @fredrpa708 , looks like it’s working on the main demo

@stephenwaite Saving the day amigo. Thank you