monica icon indicating copy to clipboard operation
monica copied to clipboard

Docker image for raspberry

Open mNantern opened this issue 6 years ago • 8 comments

I want to be able to run Monica on my Raspberry PI.

I made it work by building a new Docker image (following the blog post: https://blog.hypriot.com/post/setup-simple-ci-pipeline-for-arm-images/) for Monica and replacing the official mysql image by hypriot/rpi-mysql.

Please find below my docker-compose:

version: "2"
services:
  monicahq:
    build: .
    image: mnantern/rpi-monicahq
    links:
      - mysql
    ports:
      - 3000:80
    env_file: .env
    volumes:
      - ./data/monica:/var/www/monica/storage/app/public

  mysql:
    image: hypriot/rpi-mysql:latest
    environment:
      - MYSQL_ROOT_PASSWORD=xxxx
      - MYSQL_DATABASE=monica
      - MYSQL_USER=homestead
      - MYSQL_PASSWORD=xxxx
    volumes:
      - ./data/mysql:/var/lib/mysql

Are you interested in a PR ?

mNantern avatar Jul 01 '18 15:07 mNantern

Would love to be able to run this on ARM easily. I’ll have to try out your image, thanks!

Wdavery avatar Dec 19 '18 03:12 Wdavery

Would love to be able to run this on ARM easily. I’ll have to try out your image, thanks!

Did you get it to work on Pi?

AndyYangUK avatar May 08 '19 11:05 AndyYangUK

I never ended up trying it before my main server was shifted to x86.

Wdavery avatar May 14 '19 03:05 Wdavery

is this still working?

Dzheky avatar Sep 24 '19 07:09 Dzheky

would love some official support for raspberrypi and arm

natelandau avatar Dec 10 '19 22:12 natelandau

I'm not sure if you guys are still interested in this, but I have a multi-arch image up and running here.

The latest build is still running, so keep an eye on the Docker hub.

Feel free to leave me feedback or PR's!

JC5 avatar Dec 25 '19 10:12 JC5

anyone has a working image? The ones posted here are no longer available :(

KBSchmidt avatar Oct 08 '21 07:10 KBSchmidt

This should work for you: https://github.com/monicahq/docker/pull/49

iloveitaly avatar Feb 12 '24 17:02 iloveitaly