Created
July 29, 2021 17:26
-
-
Save gcdd1993/6d18cf84ab2837351d9dc5202da95abd to your computer and use it in GitHub Desktop.
postgres docker 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: '3.8' | |
services: | |
postgres: | |
container_name: postgres | |
image: "postgres:9.6.22" | |
environment: | |
POSTGRES_USER: "postgres" | |
POSTGRES_PASSWORD: "1123lovewm" | |
PGDATA: "/data/postgres" | |
volumes: | |
- ./data:/data/postgres | |
ports: | |
- "5432:5432" | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment