mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
14 lines
313 B
YAML
14 lines
313 B
YAML
services:
|
|
|
|
adminer:
|
|
image: adminer:latest
|
|
container_name: adminer
|
|
environment:
|
|
ADMINER_DEFAULT_SERVER: ${ADMINER_DEFAULT_SERVER:-mariadb}
|
|
restart: unless-stopped
|
|
security_opt:
|
|
- no-new-privileges:true
|
|
read_only: true
|
|
tmpfs:
|
|
- /var/lib/php:rw,noexec,nosuid,size=64M
|