Rizwan Haider | 752a48c | 2016-08-18 15:37:06 -0400 | [diff] [blame] | 1 | # 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 | |||||
5 | xos_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" |