How should TYPO3 run on a Docker-based architecture such as Divio in which:
- multiple containers run in parallel
- are recycled without warning
- have no shared local file storage
It seems that the requirement to write to typo3temp
(and to some other file locations) is hard-coded in TYPO3.
(By forcing the site to run in just one container instead of multiple containers, it has been possible to create a new admin user and and use the /typo3
backend. However, there could be other problems arising further down the road.
The application has AWS S3 file storage, and a MySQL database.)
Is there some way around this? How do TYPO3 installations in similar containerised environments solve this issue?