Could not find MacOs download link of openemr

OpenEmr mac version
I could not find it from the download tab linked page…?

Browser:
I’m using: safari

Operating System
I’m using: macos Catalina 10.15.3

hi @Mohammad, would recommend using the openemr docker after installing docker for macos

this or either using MAMP

I ended up installing it on windows 10 and XAMPP, however it is awful slow, I tried the demo on your site and it was lightening fast, any reasons?

How do I do this as I am not a coder, it is all a bit confusing.

I am using a Macbook with M2 Chip and MacOS Ventura 13.5.1

Check out this post. We had another member request something similar

It should help get you pointed in the right direction. If you run into anything, feel free to update this post!

Oh it seems @stephenwaite beat me to it :face_with_open_eyes_and_hand_over_mouth: :stuck_out_tongue: :face_with_peeking_eye:

hah, great work on the forum @Thepherm !

your well formatted and detailed replies are inspiring and a role model

1 Like

Any ideas what this means. This was from step 6

: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

This is the output

{\rtf1\ansi\ansicpg1252\cocoartf2709
\cocoatextscaling0\cocoaplatform0{\fonttbl\f0\fnil\fcharset0 Menlo-Regular;}
{\colortbl;\red255\green255\blue255;\red51\green51\blue51;\red247\green247\blue247;\red0\green0\blue0;
}
{*\expandedcolortbl;;\cssrgb\c26275\c26275\c26275;\cssrgb\c97647\c97647\c97647;\cssrgb\c0\c0\c0;
}
\margl1440\margr1440\vieww27080\viewh19040\viewkind0
\deftab720
\pard\pardeftab720\partightenfactor0

\f0\fs30 \cf2 \expnd0\expndtw0\kerning0
\outl0\strokewidth0 \strokec2 version\cb3 : \cf0 \cb1 \strokec4 ‘3’\cf2 \cb3 \strokec2
\cb1 services\cb3 :
\cb1 openemr\cb3 :
\cb1 image\cb3 : \cf0 \cb1 \strokec4 openemr/openemr\cf2 \cb3 \strokec2
\cb1 ports\cb3 :
\cb1 -\cb3 \cf0 \cb1 \strokec4 “8080:80”\cf2 \cb3 \strokec2
\cb1 environment\cb3 :
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_HOST=db\cf2 \cb3 \strokec2
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_ROOT_PASS=root_password\cf2 \cb3 \strokec2
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_USER=openemr\cf2 \cb3 \strokec2
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_PASS=openemr_password\cf2 \cb3 \strokec2
\cb1 depends_on\cb3 :
\cb1 -\cb3 \cf0 \cb1 \strokec4 db\cf2 \cb3 \strokec2
\cb1 db\cb3 :
\cb1 image\cb3 : \cf0 \cb1 \strokec4 mysql:8.1\cf2 \cb3 \strokec2
\cb1 environment\cb3 :
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_ROOT_PASSWORD=root_password\cf2 \cb3 \strokec2
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_USER=openemr\cf2 \cb3 \strokec2
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_PASSWORD=openemr_password\cf2 \cb3 \strokec2
\cb1 -\cb3 \cf0 \cb1 \strokec4 MYSQL_DATABASE=openemr}% davesmith@DS—Mac-Mini-2 openemr %

:thinking: interesting,

it seems that the output is incorrect and contains some type of styling text. Try using the code block below if you run into any paste issues try opening the file up with Visual Studio Code.

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