Difference between revisions of "IT-SDK-Database"

From wiki.samerhijazi.net
Jump to navigation Jump to search
Line 1: Line 1:
 +
=Source=
 
* src: https://gist.github.com/hofmannsven/9164408
 
* src: https://gist.github.com/hofmannsven/9164408
 
* src: https://dbeaver.io/
 
* src: https://dbeaver.io/
 +
* src: https://www.youtube.com/watch?v=G3gnMSyX-XM
 +
=Postgres=
 +
<pre class="code">
 +
docker run -p 5432:5432 -d \
 +
-e POSTGRES_PASSWORD=admin \
 +
-e POSTGRES_USER=admin \
 +
-e POSTGRES_DB=trymore_eu \
 +
--name postgres \
 +
postgres
 +
</pre>

Revision as of 00:29, 13 April 2020

Source

Postgres

docker run -p 5432:5432 -d \
-e POSTGRES_PASSWORD=admin \
-e POSTGRES_USER=admin \
-e POSTGRES_DB=trymore_eu \
--name postgres \
postgres