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

From wikieduonline
Jump to navigation Jump to search
Line 27: Line 27:
 
== Activities ==
 
== Activities ==
 
* Add a docker-compose for PostgreSQL with a [[volume]] or [[Bind mounts (Docker)|bind mounts]]
 
* Add a docker-compose for PostgreSQL with a [[volume]] or [[Bind mounts (Docker)|bind mounts]]
 +
 +
== Related ==
 +
* <code>[[docker compose up]]</code>
  
 
== See also ==
 
== See also ==

Revision as of 17:24, 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

Related

See also

Advertising: