Sameer Naik
Sameer Naik
@pc-fan your findings are absolutely spot-on. You mentioned the use of `--volumes-from owncloud`, this techinically can already be done. While starting the owncloud container add `-v /var/lib/owncloud` and use `--volumes-from...
tested without any issues using the following commands: ``` bash docker run -itd --name mysql \ -e DB_USER=openfire \ -e DB_PASS=password \ -e DB_NAME=openfiredb \ sameersbn/mysql:latest docker run -itd --link...
@wjdonnelly have not seen this issue before. it has not been reported earlier as well. `/etc/init.d/openfire` is not used to start the openfire server, it is launced directly https://github.com/sameersbn/docker-openfire/blob/master/entrypoint.sh#L66 Can...
at the moment there is no way to automatically switch. You need to do it manually.
/remind me about this on saturday
Thanks for the PR. Will need a little time to review the changes. Please bear.
I extended your work from this PR which can be found in the [postgis-extension-finalization](https://github.com/sameersbn/docker-postgresql/tree/postgis-extension-finalization) branch. Here are the [changesets](https://github.com/sameersbn/docker-postgresql/compare/postgis-extension-finalization?expand=1). One important change I have done is that I have removed...
@grepped mongo just takes time to start. You can watch the mongo logs after starting the container using `docker exec -it mongodb tail -f /var/log/mongodb/mongod.log` Give it a minute or...
@grepped was your issue resolved?
try setting `TERM=xterm` `docker exec -it postgresql bash -c 'TERM=xterm psql -U postgres gitlabhq_production` or specify `-t` arg to `docker run` while launching the postgresql container.