Skip to content

Instantly share code, notes, and snippets.

@edwardoboh
Created June 24, 2024 19:17
Show Gist options
  • Save edwardoboh/947d3cf50c73c27469baae970090bd2b to your computer and use it in GitHub Desktop.
Save edwardoboh/947d3cf50c73c27469baae970090bd2b to your computer and use it in GitHub Desktop.
version: '3.8'
services:
  peca-dev-db:
    image: postgres:13-alpine
    restart: always
    ports:
      - "5435:5432"
    environment:
      - POSTGRES_PASSWORD=abc1234
      - POSTGRES_USER=finance
      - POSTGRES_DB=db
    networks:
      - finance
    volumes:
      - volume:/var/lib/postgresql/data

networks:
  finance:

volumes:
  volume:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment