You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
577 B

3 years ago
  1. mariadb:
  2. image: 'mariadb:10'
  3. ports:
  4. - '${FORWARD_DB_PORT:-3306}:3306'
  5. environment:
  6. MYSQL_ROOT_PASSWORD: '${DB_PASSWORD}'
  7. MYSQL_DATABASE: '${DB_DATABASE}'
  8. MYSQL_USER: '${DB_USERNAME}'
  9. MYSQL_PASSWORD: '${DB_PASSWORD}'
  10. MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
  11. volumes:
  12. - 'sailmariadb:/var/lib/mysql'
  13. networks:
  14. - sail
  15. healthcheck:
  16. test: ["CMD", "mysqladmin", "ping", "-p${DB_PASSWORD}"]
  17. retries: 3
  18. timeout: 5s