Docker image for TYPO3 CMS. Comes with an Apache server and PHP 7.2.0.
355
Get the container from: https://hub.docker.com/r/saitho/apache-typo3/
Put your TYPO3 project source into src/ directory.
version: '3'
services:
typo3:
container_name: typo3
image: saitho/apache-typo3:latest
ports:
- "8080:80"
volumes:
- ./src:/var/www/html
links:
- database
database:
container_name: typo3-db
image: mysql
ports:
- "27017:27017"
environment:
- MYSQL_ROOT_PASSWORD=typo3
Content type
Image
Digest
Size
182.3 MB
Last updated
over 8 years ago
docker pull saitho/apache-typo3