You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Dockerfile (RUN curl -sSL https://get.docker.com/) installs docker within the chords_app image. This was required for some sort of inter-container coordination back in the day, but is it required anymore?
The text was updated successfully, but these errors were encountered:
It looks like it is used for the config page database export/import function (profiles_controller.rb: export_influxdb and import_influxdb. I think this may be available via http; but perhaps we should just leave it as is for now.
There are a couple of other places that do a "docker exec" from within the (Rails) code:
app/controllers/profiles_controller.rb: This is the bulk export capability. When I developed this I looked in to the http option, but funneling all the data over http between containers was a huge performance hit and consumed a lot more memory.
bin/certbot/renew_hooks.sh : reloading the nginx container
I thikn this should be left in place, as much as I'd like to decrease the size of the container.
The Dockerfile (
RUN curl -sSL https://get.docker.com/
) installs docker within the chords_app image. This was required for some sort of inter-container coordination back in the day, but is it required anymore?The text was updated successfully, but these errors were encountered: