Skip to content

Symbiote Apache Docker container

Notifications You must be signed in to change notification settings

symbiote/apache2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Symbiote Apache

An apache2 image with baked in SSL certificates

Has vhosts to capture all requests to *.symlocal domains for both http and https.

Build

docker build -t symbite/apache2:2.4 .

Run

It is highly recommended to run this from a docker-compose alongside symbiote/php-fpm, as the default vhost configs reference the "php" hostname created by docker

version: '2'
services:
  apache:
    image: "symbiote/apache2:latest"
    ports:
      - "80:80"
      - "443:443"
    links:
      - php:php
    working_dir: /var/www/html
    volumes:
      - .:/var/www/html
  php:
    image: "symbiote/php-fpm:7.1"
    volumes:
      - '.:/var/www/html'

About

Symbiote Apache Docker container

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published