Last active
August 11, 2020 05:33
-
-
Save nithinivi/625d25f959e5e34b6485f83b2d6cc4c4 to your computer and use it in GitHub Desktop.
This file contains 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: '3' | |
services: | |
postgresql: | |
image: postgres:11 | |
volumes: | |
- db-data:/var/lib/postgresql/data | |
environment: | |
POSTGRES_PASSWORD: testuser | |
ports: | |
- "5432:5432" | |
volumes: | |
db-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment