updated postgres and mariadb compose

This commit is contained in:
Christian Lempa 2023-12-11 14:57:49 +01:00
parent d6729c02ae
commit 3b31d590b8
2 changed files with 25 additions and 1 deletions

View File

@ -7,7 +7,7 @@ volumes:
mariadb-data:
services:
mariadb:
container_name: mariadb:11.1.2
# (Recommended) replace "latest" with specific version
image: mariadb:latest
# (Optional) remove this section when you don't want to expose
ports:

View 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