Skip to content

Instantly share code, notes, and snippets.

@malikperang
Created March 16, 2021 06:39
Show Gist options
  • Save malikperang/33e13621d1d02e08d28c30cda72a2562 to your computer and use it in GitHub Desktop.
Save malikperang/33e13621d1d02e08d28c30cda72a2562 to your computer and use it in GitHub Desktop.
PostgreSQL Docker Compose
# Use postgres/example user/password credentials
version: '3.1'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: example
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