archen / django-tests

Vagrant box to provide a known-functioning and consistent environment for Django contributors to test changes before committing to the repo.
6 stars 0 forks source link

Docker Postgresql service #1

Open archen opened 9 years ago

archen commented 9 years ago

I'll handle this one personally as a template for all other services.

archen commented 9 years ago

So far I've completed the container creation. If you want to see it running you can do: docker run -d -p 5432:5432 --name django-test-psql archen/django-test-psql:9.4 psql -h localhost -p 5432 -U jenkins postgres

The container itself is configured in a highly insecure manner considering the parity we want to keep with the original server configuration. This container allows login from any IP address to the database without a password... yikes.