Skip to content

Instantly share code, notes, and snippets.

@devisnotnull
Created December 23, 2019 19:38
Show Gist options
  • Save devisnotnull/41c4393a441fb46636e1dd32cf9ecf87 to your computer and use it in GitHub Desktop.
Save devisnotnull/41c4393a441fb46636e1dd32cf9ecf87 to your computer and use it in GitHub Desktop.
Postgres docker compose
version: '3.1'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: example
ports:
- 5432:5432
adminer:
image: adminer
restart: always
ports:
- 8080:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment