Created
September 29, 2021 15:24
-
-
Save impactmass/92bc4ef4d0d585983b8071bd301c9bcf to your computer and use it in GitHub Desktop.
Quick run postgresql
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: "3" | |
services: | |
postgresql: | |
image: postgres | |
container_name: container_name | |
ports: | |
- "5432:5432" | |
environment: | |
- POSTGRES_USER=postgres_user | |
- POSTGRES_PASSWORD=password | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment