Docker-compose.xml PostgreSQL

From wikieduonline
Revision as of 11:58, 2 February 2020 by Welcome (talk | contribs) (Created page with " https://hub.docker.com/_/postgres?tab=description <pre> # Use postgres/example user/password credentials version: '3.1' services: db: image: postgres restart: alw...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

https://hub.docker.com/_/postgres?tab=description

# 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

Advertising: