tyage / slack-patron

Log and view all Slack messages.
MIT License
169 stars 41 forks source link

Switch ARG to ENV in Dockerfiles and persist DB storage #108

Closed raman325 closed 1 year ago

raman325 commented 4 years ago

Setting up the logger and viewer containers was failing because the setup script couldn't access the variables set using ARG. Using ENV fixed that. In addition, I have made the database volume persistent so the data can be accessed using other tools.

tyage commented 3 years ago

persisting DB seems a nice catchup. thanks :)

you can access the variables when you build docker image like this, I guess. docker build --build-arg BRANCH=...

tyage commented 1 year ago

dockerfile has been changed and some args are already removed.