2023-09-26 09:53:42 +02:00
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
container_name: postgres
|
|
|
|
image: postgres:15
|
|
|
|
restart: unless-stopped
|
|
|
|
environment:
|
|
|
|
- POSTGRES_USER=postgres
|
|
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
|
|
volumes:
|
|
|
|
- $DATA/postgres:/var/lib/postgresql/data
|
|
|
|
networks:
|
|
|
|
- storage
|
|
|
|
|
|
|
|
redis:
|
|
|
|
container_name: redis
|
|
|
|
image: redis:latest
|
|
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
|
|
- storage
|
|
|
|
|
|
|
|
mariadb:
|
|
|
|
container_name: mariadb
|
|
|
|
image: mariadb:latest
|
2023-10-28 13:19:34 +02:00
|
|
|
restart: unless-stopped
|
2023-09-26 09:53:42 +02:00
|
|
|
environment:
|
|
|
|
- MARIADB_ROOT_PASSWORD=${MARIADB_ROOT}
|
|
|
|
volumes:
|
|
|
|
- $DATA/mariadb:/var/lib/mysql:rw
|
|
|
|
networks:
|
|
|
|
- storage
|
|
|
|
|
|
|
|
|
|
|
|
networks:
|
|
|
|
storage:
|
|
|
|
name: storage
|