compose.yaml 239 B

123456789101112131415
  1. # Use root/example as user/password credentials
  2. services:
  3. db:
  4. image: mariadb
  5. restart: always
  6. environment:
  7. MARIADB_ROOT_PASSWORD: example
  8. adminer:
  9. image: adminer
  10. restart: always
  11. ports:
  12. - 8080:8080