Sign inSign up

saitho/apache-typo3

By saitho

Updated over 8 years ago

Docker image for TYPO3 CMS. Comes with an Apache server and PHP 7.2.0.

Image
0

355

saitho/apache-typo3 repository overview

Docker image for TYPO3 CMS

Get the container from: https://hub.docker.com/r/saitho/apache-typo3/

  • Compatibility verified with TYPO3 CMS 8.7 LTS and 9.1.0
  • Comes with PHP 7.2.0 and an Apache server

Sample docker-compose file

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

Tag summary

Content type

Image

Digest

Size

182.3 MB

Last updated

over 8 years ago

docker pull saitho/apache-typo3