File: docker-compose.yml

package info (click to toggle)
harlequin-postgres 1.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 336 kB
  • sloc: python: 1,714; makefile: 24
file content (14 lines) | stat: -rw-r--r-- 219 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
 
  db:
    image: postgres
    restart: always
    environment:
      POSTGRES_PASSWORD: for-testing
    volumes:
        - pgdata:/var/lib/postgresql/data
    ports:
        - 5432:5432
 
volumes:
  pgdata: