Monica: Docker image for raspberry

Created on 1 Jul 2018  路  6Comments  路  Source: monicahq/monica

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 ?

docker

Most helpful comment

would love some official support for raspberrypi and arm

All 6 comments

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

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

Did you get it to work on Pi?

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

is this still working?

would love some official support for raspberrypi and arm

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!

Was this page helpful?
0 / 5 - 0 ratings

Related issues

baisong picture baisong  路  3Comments

asbiin picture asbiin  路  4Comments

jkbecker picture jkbecker  路  3Comments

jbiswas picture jbiswas  路  3Comments

djaiss picture djaiss  路  3Comments