Skip to content

Instantly share code, notes, and snippets.

@ritiek
Created June 21, 2024 17:57
Show Gist options
  • Save ritiek/e00c04746d4681e74c982a1411e23112 to your computer and use it in GitHub Desktop.
Save ritiek/e00c04746d4681e74c982a1411e23112 to your computer and use it in GitHub Desktop.
PostgreSQL in Docker
# Start server with
sudo docker run -it --rm -e POSTGRES_PASSWORD=mysecretpassword postgres
# Connect to server either with
sudo docker exec -it 938645c5a5d9 psql -U postgres
# or with
sudo docker exec -u postgres -it 938645c5a5d9 psql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment