From 63fbe3b7414625878cd02ca27947cfc82faf2cf0 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 24 Mar 2020 22:26:58 +0100 Subject: [PATCH] Use ports to match upstream Dockerfile --- Dockerfile | 2 +- ansible/post-deploy.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e0d74cb..f47e2ff 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ FROM drone/drone:1 -EXPOSE 8000 +EXPOSE 80 diff --git a/ansible/post-deploy.yml b/ansible/post-deploy.yml index 5e24e1f..e9b129c 100644 --- a/ansible/post-deploy.yml +++ b/ansible/post-deploy.yml @@ -12,7 +12,7 @@ dokku_ports: app: drone mappings: - - "http:80:8000" + - "http:80:80" state: present - name: Setup LE certificates @@ -29,12 +29,12 @@ dokku_ports: app: drone mappings: - - "http:8000:8000" + - "http:80:80" state: absent - name: Set HTTP 443 port dokku_ports: app: drone mappings: - - "https:443:8000" + - "https:443:80" state: present