Could not find MacOs download link of openemr

:thinking:

Can you cat docker-compose.yml and put its output here, removing any sensitive data of course, it seems there may be a syntax error in your docker-compose.yml file

Here is an example docker-compose.yml you can also reference

version: '3'
services:
  openemr:
    image: openemr/openemr
    ports:
      - "8080:80"
    environment:
      - MYSQL_HOST=db
      - MYSQL_ROOT_PASS=root_password
      - MYSQL_USER=openemr
      - MYSQL_PASS=openemr_password
    depends_on:
      - db
  db:
    image: mysql:8.1
    environment:
      - MYSQL_ROOT_PASSWORD=root_password
      - MYSQL_USER=openemr
      - MYSQL_PASSWORD=openemr_password
      - MYSQL_DATABASE=openemr
1 Like