Difference between revisions of "Docker-compose.yml PostgreSQL"

From wikieduonline
Jump to navigation Jump to search
Line 4: Line 4:
 
== Example ==
 
== Example ==
  
<pre>
+
# Use postgres/example user/password credentials
+
# Use postgres/example user/password credentials
version: '3.1'
+
version: '3.1'
 
+
services:
+
services:
 
+
 
   db:
 
   db:
 
     image: postgres
 
     image: postgres
Line 16: Line 16:
 
       POSTGRES_USER: postgres
 
       POSTGRES_USER: postgres
 
       POSTGRES_PASSWORD: example
 
       POSTGRES_PASSWORD: example
 
+
   adminer:
+
   [[adminer]]:
 
     image: adminer
 
     image: adminer
 
     restart: always
 
     restart: always
 
     ports:
 
     ports:
 
       - 8080:8080
 
       - 8080:8080
</pre>
+
 
  
 
== Activities ==
 
== Activities ==

Revision as of 17:21, 15 July 2024

https://hub.docker.com/_/postgres?tab=description

Example

# Use postgres/example user/password credentials
version: '3.1'

services:

 db:
   image: postgres
   restart: always
   environment:
     POSTGRES_USER: postgres
     POSTGRES_PASSWORD: example

 adminer:
   image: adminer
   restart: always
   ports:
     - 8080:8080


Activities

See also

Advertising: