-
-
Save katiakweb/fb488c6f10c2f69c0072b4e54d8d8f9e to your computer and use it in GitHub Desktop.
Postgres with adminer UI
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.1' | |
services: | |
postgres: | |
image: postgres | |
container_name: postgres | |
restart: always | |
environment: | |
- POSTGRES_USER=test | |
- POSTGRES_PASSWORD=test | |
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