docker icon indicating copy to clipboard operation
docker copied to clipboard

Is there a Docker image of the beta version of Monica?

Open DonDebonair opened this issue 1 year ago • 4 comments

I would love to try and run the beta version of Monica (previously known as "Chandler"), but as I understand it, the official Docker images are from the 4.x version of Monica.

Are there Docker images available somewhere of the beta version of Monica? Maybe nightly builds?

I imagine you can use all the help you can get in testing the beta version and providing Docker images for it, would help a great deal with getting people to help you test :)

DonDebonair avatar Dec 23 '23 10:12 DonDebonair

I haven't tried it myself, but this might be what you're looking for.

mrodus avatar Jan 10 '24 06:01 mrodus

It would be really great if 5.x images could be published to docker (including FPM)!

If there is any way I could help make it happen I'd be glad to try.

slifty avatar Feb 15 '24 18:02 slifty

I would also like to see a docker image (ideally with a compose file) for 5.x

Did anyone try what @mrodus found?

Rayregula avatar Apr 19 '24 01:04 Rayregula

I would also like to see a docker image (ideally with a compose file) for 5.x

Did anyone try what @mrodus found?

I use this and it works just fine for me:

  monica:
    container_name: monica
    image: ghcr.io/monicahq/monica-next:main
    restart: unless-stopped
    volumes:
      - ./monica/storage:/var/www/html/storage
    ports:
      - 5858:80
    env_file: monica.env

And monica.env:

DB_DATABASE=/var/www/html/storage/database.sqlite
MAIL_MAILER=smtp
MAIL_HOST=
MAIL_PORT=
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=
MAIL_FROM_ADDRESS=

mrodus avatar Apr 19 '24 07:04 mrodus