Created
June 28, 2017 02:55
-
-
Save ZackMattor/a1b7a427acafdf6f154c8156ad05a288 to your computer and use it in GitHub Desktop.
Postgresql Rails Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
postgresql: | |
container_name: pg_local | |
image: postgres:latest | |
ports: | |
- 5432:5432 | |
networks: | |
- esnet | |
environment: | |
- POSTGRES_USER=zmattor | |
- POSTGRES_PASSWORD=dev | |
volumes: | |
esdata: | |
driver: local | |
networks: | |
esnet: | |
driver: bridge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment