Skip to content

Instantly share code, notes, and snippets.

@ostermine
Created November 13, 2023 09:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ostermine/b1cc49d76134b94122d749708ea04e28 to your computer and use it in GitHub Desktop.
Save ostermine/b1cc49d76134b94122d749708ea04e28 to your computer and use it in GitHub Desktop.
postgresql simple docker compose
#es
#configuring pod'es
version: '3.1'
services:
db:
image: postgres
restart: always
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: peinsRoot123
POSTGRES_DB: test_db_name
network_mode: host
volumes:
- ./pgdata:/var/lib/postgresql/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment