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 ?
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!
Most helpful comment
would love some official support for raspberrypi and arm