1 2 3 4 5 6 7 8 9 10 11 12
version: "3.0" services: postgres: image: postgres:9.5 ports: - "5432:5432" environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=password - POSTGRES_DB=dbq restart: always