Skip to content

Instantly share code, notes, and snippets.

@matheusnascgomes
Created October 14, 2019 17:06
Show Gist options
  • Select an option

  • Save matheusnascgomes/6a9bf26acbdbf5fe9fde3133c1f9b06c to your computer and use it in GitHub Desktop.

Select an option

Save matheusnascgomes/6a9bf26acbdbf5fe9fde3133c1f9b06c to your computer and use it in GitHub Desktop.

Revisions

  1. matheusnascgomes created this gist Oct 14, 2019.
    11 changes: 11 additions & 0 deletions docker-compose.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    version: '3.7'

    services:
    postgres:
    image: postgres:10.10-alpine
    container_name: postgres
    ports:
    - 5432:5432
    volumes:
    - ./postgres-data:/var/lib/postgresql/data
    restart: always