mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2025-08-16 18:02:05 +02:00
updated postgres and mariadb compose
This commit is contained in:
24
docker-compose/postgres/docker-compose.yaml
Normal file
24
docker-compose/postgres/docker-compose.yaml
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
# (Optional) when using custom network
|
||||
# networks:
|
||||
# yournetwork:
|
||||
# external: true
|
||||
volumes:
|
||||
postgres-data:
|
||||
services:
|
||||
postgres:
|
||||
# (Recommended) replace "latest" with specific version
|
||||
image: postgres:latest
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
# (Optional) when creating a new database
|
||||
# - POSTGRES_DB=${POSTGRES_DB}
|
||||
ports:
|
||||
- 5432:5432
|
||||
# (Optional) when using custom network
|
||||
# networks:
|
||||
# - yournetwork
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user