Afterlogic ActiveServer image for Docker - using Nginx and PHP-FPM 8.1 on Alpine Linux
192
Afterlogic ActiveServer image for Docker using Nginx and PHP-FPM 8.1 on Alpine Linux. Loosely based on khromov/alpine-nginx-php8 package.
git clone https://github.com/afterlogic/docker-activeserver .
docker compose up
curl https://raw.githubusercontent.com/afterlogic/docker-activeserver/master/docker-hub-compose.yml --output docker-compose.yml
docker compose up
Whether you get the image from DockerHub directly, or build it from GitHub repository, docker compose up will run the image, starting Nginx and PHP-FPM.
In case of GitHub repository, the latest version of ActiveServer is downloaded from the website. DockerHub image is not guaranteed to contain the latest version of the product.
The installation will be available at http://localhost:800/ - if you wish to use another port instead of default 800, adjust docker-compose.yml file and edit the following section:
ports:
- "800:800"
Supplying "8080:800" will make sure port 8080 is used, and the installation will be available at http://localhost:8080
To configure ActiveServer installation, you'll need to edit aurora.config.php file found in root directory of the installation.
Adjusting other configuration files such as config.php, backend/caldav/config.php, backend/carddav/config.php, backend/imap/config.php may be needed as well. One of the ways to do that is to copy a configuration file from container to host:
docker cp ContainerID:/var/www/html/config.php D:/Temp/config.php
where ContainerID is obtained from docker ps output, then edit the file locally and copy it back into the container:
docker cp D:/Temp/config.php ContainerID:/var/www/html/config.php
See ActiveServer installation instructions for configuration guidelines.
Content of this repository is available in terms of The MIT License (see LICENSE.txt file)
Content type
Image
Digest
sha256:272d54c0f…
Size
33.8 MB
Last updated
about 4 years ago
docker pull afterlogic/docker-activeserver