23 lines
465 B
YAML
23 lines
465 B
YAML
version: '2.2'
|
|
|
|
services:
|
|
|
|
db:
|
|
image: mariadb
|
|
container_name: notes-mariadb
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Brussels
|
|
volumes:
|
|
- notes-db-volume:/var/lib/mysql
|
|
healthcheck:
|
|
test: ["CMD", "mysqladmin" ,"ping", "-h", "localhost"]
|
|
timeout: 10s
|
|
retries: 10
|
|
|
|
volumes:
|
|
notes-db-volume:
|