diff options
author | walkafwalka <41709139+walkafwalka@users.noreply.github.com> | 2018-08-04 10:50:16 +0200 |
---|---|---|
committer | Markus Opahle <3225748+mopahle@users.noreply.github.com> | 2019-02-27 10:45:34 +0100 |
commit | 3a7bf6a8acff4dcb7802adabefa153bc60a372ec (patch) | |
tree | ef2647d2d4e501fe07dd22685064e1a5406322f9 /INSTALL.md | |
parent | Merge pull request #3260 from jlmitch5/launchJTWFForm (diff) | |
download | awx-3a7bf6a8acff4dcb7802adabefa153bc60a372ec.tar.xz awx-3a7bf6a8acff4dcb7802adabefa153bc60a372ec.zip |
Add SSL suport for docker install
Signed-off-by: walkafwalka <41709139+walkafwalka@users.noreply.github.com>
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/INSTALL.md b/INSTALL.md index 69dc31614f..bf0eef7488 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -439,7 +439,11 @@ Before starting the build process, review the [inventory](./installer/inventory) *host_port* -> Provide a port number that can be mapped from the Docker daemon host to the web server running inside the AWX container. Defaults to *80*. +> Provide a port number that can be mapped from the Docker daemon host to the web server running inside the AWX container. Defaults to *443*. + +*ssl_certificate* + +> Optionally, provide the path to a file that contains a certificate and its private key. *use_docker_compose* @@ -527,7 +531,7 @@ After the playbook run completes, Docker will report up to 5 running containers. ```bash CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES e240ed8209cd awx_task:1.0.0.8 "/tini -- /bin/sh ..." 2 minutes ago Up About a minute 8052/tcp awx_task -1cfd02601690 awx_web:1.0.0.8 "/tini -- /bin/sh ..." 2 minutes ago Up About a minute 0.0.0.0:80->8052/tcp awx_web +1cfd02601690 awx_web:1.0.0.8 "/tini -- /bin/sh ..." 2 minutes ago Up About a minute 0.0.0.0:443->8052/tcp awx_web 55a552142bcd memcached:alpine "docker-entrypoint..." 2 minutes ago Up 2 minutes 11211/tcp memcached 84011c072aad rabbitmq:3 "docker-entrypoint..." 2 minutes ago Up 2 minutes 4369/tcp, 5671-5672/tcp, 25672/tcp rabbitmq 97e196120ab3 postgres:9.6 "docker-entrypoint..." 2 minutes ago Up 2 minutes 5432/tcp postgres |