1

I'm using Docker with phpMyAdmin and everything works fine except that it timeout way too quickly if I don't use it for a moment. How can I change the limit before having to reconnect ?

Drakota
  • 307
  • 4
  • 15
  • session timeout or request timeout? I'm pretty sure you solve this the same way as outside docker. – Grimmy Jul 27 '17 at 20:47
  • Session timeout, I've checked another answer and in phpMyAdmin there's suppose to be a setting to change to extend the timeout, but it's not there. – Drakota Jul 27 '17 at 20:49
  • Still relevant I guess? https://stackoverflow.com/questions/11272973/phpmyadmin-automatic-logout-time – Grimmy Jul 27 '17 at 20:51

1 Answers1

2

Is setting MAX_EXECUTION_TIME in your docker-compose (under 'environment') a possible solution?

Ken
  • 2,421
  • 3
  • 21
  • 22