Skip to content

Instantly share code, notes, and snippets.

@gabrielfeitosa
Created April 16, 2021 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielfeitosa/4eaa4df7c7bf15af32d802b40f1d7a9d to your computer and use it in GitHub Desktop.
Save gabrielfeitosa/4eaa4df7c7bf15af32d802b40f1d7a9d to your computer and use it in GitHub Desktop.
docker-compose samples
version: '3'
services:
postgres:
image: postgres
environment:
POSTGRES_PASSWORD: "abcde"
ports:
- "15432:5432"
volumes:
- ./database-data:/var/lib/postgresql/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment