Seeking Advice on Docker Compose Setup for Redmine Deployment

0
6
Asked By TechieGal92 On

Hi everyone! I'm trying to set up an internal web application using Redmine with Docker Compose. We're looking at around 1000 users, although they won't all be using it at the same time. Currently, my setup includes a docker-compose.yaml specifically for the Redmine container, a MariaDB server installed directly on the host machine (not in a container), and a bind mount of 30 GB for attachments. I'm also considering running NGINX, but I'm unsure if I should install it as a service on the host or include it as a container in my Docker Compose file. Any advice would be greatly appreciated! Thanks!

1 Answer

Answered By DockerDude42 On

It really depends on your preference—do you want a dockerized setup for NGINX, or are you leaning towards having it run directly on the host? Generally, the best practice is to keep everything containerized if you can; it makes management a lot easier in the long run. Just remember that if you run NGINX as a container, you'll need to handle some networking considerations for it to connect properly with the Redmine container.

CuriousUser77 -

That's what I was thinking too! Keeping everything in containers seems like it would streamline things.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.