blob: ca2548327ad87f4fa5a5718ec1985c9706676fbc [file] [log] [blame]
Rizwan Haider752a48c2016-08-18 15:37:06 -04001# Use this version if you will be starting the Python interpreters from the command line - or in the debugger
2# Meant for development only. Starts the PostGres DB in a Docker container with a port that can be accessed
3# from outside of Docker.
4
5xos_db:
6 image: xosproject/xos-postgres
7 expose:
8 - "5432"
9 # Show this port externally so we can access it outside of containers
10 ports:
11 - "5432:5432"