plesk/docker

Name: docker

Owner: Plesk

Description: Dockerfiles for Plesk

Created: 2015-08-21 12:38:57.0

Updated: 2018-03-03 08:09:57.0

Pushed: 2018-03-06 07:57:23.0

Homepage: null

Size: 32

Language: Shell

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Dockerfiles for Plesk

Dockerfiles for building Plesk images.

Ready to Use Images

Ready to use images are published at Docker Hub.

Create a container based on published image for evaluation purposes:

docker run -d -p 8880:8880 plesk/plesk

Use Docker host IP address and 8880 port for URL to open it in the browser. The following command can be used in the terminal:

open http://`docker-machine ip`:8880

Default login and password: admin / changeme

Create a container with typical port mapping:

docker run -d -p 80:80 -p 443:443 -p 8880:8880 -p 8443:8443 -p 8447:8447 plesk/plesk

Automatic port mapping can be used to publish all exposed ports to random ports with the high numbers:

docker run -d -P plesk/plesk

How To Build And Test

Here is an example on how to build the image manually:

cd 17.0 ; docker build -t plesk/plesk:17.0 .

Create a container to test the image:

docker run -d -p 8880:8880 plesk/plesk:17.0

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.