12345678910111213141516171819202122232425262728 |
- version: '2'
- services:
- typo3db:
- image: mysql:latest
- environment:
- MYSQL_ROOT_PASSWORD: yoursupersecretpassword
- MYSQL_USER: typo3
- MYSQL_PASSWORD: yourothersupersecretpassword
- MYSQL_DATABASE: typo3
- stdin_open: true
- tty: true
- command:
- - --character-set-server=utf8
- - --collation-server=utf8_unicode_ci
- typo3-web:
- privileged: true
- image: martinhelmich/typo3:8
- stdin_open: true
- volumes:
- - /typo3/fileadmin:/var/www/html/fileadmin
- - /typo3/typo3conf:/var/www/html/typo3conf
- - /typo3/typo3temp:/var/www/html/typo3temp
- - /typo3/uploads:/var/www/html/uploads
- tty: true
- links:
- - typo3-db:db
- labels:
- io.rancher.container.pull_image: always
|