monica
monica copied to clipboard
Docker image for raspberry
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’ll have to try out your image, thanks!
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?
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!
anyone has a working image? The ones posted here are no longer available :(
This should work for you: https://github.com/monicahq/docker/pull/49