nautobot / nautobot-docker-compose

Docker Compose for Nautobot
47 stars 43 forks source link

Default configuration does not mount `config/nautobot_config.py` #41

Closed foxx closed 2 years ago

foxx commented 2 years ago

This repo is a good starting point, but it might be a bit confusing for newcomers as the config/nautobot_config.py is not mounted by default and thus does not apply any of the customisations specified by the user.

Presumably docker-compose.yml should have a volumes mount for ./config/nautobot_config.py into /opt/nautobot/nautobot_config.py, e.g.;

    volumes:
      - "./config/nautobot_config.py:/opt/nautobot/nautobot_config.py:ro"

Let me know if you'd take a PR for this and I'll happily fix, thanks.

foxx commented 2 years ago

Ahh nevermind, just realised this is handled in the Dockerfile for plugins.

pentiumoverdrive commented 1 year ago

Can you elaborate? Can't figure out how this is supposed to work as intended. Thx