Deploy an nginx proxy service to Heroku (#136)

Deploy an nginx proxy service to Heroku

---------

Co-authored-by: Salah Al Saleh <sg.alsaleh@gmail.com>
This commit is contained in:
Josh Sandlin
2024-03-15 13:32:40 -04:00
committed by GitHub
parent 066cdb8962
commit df3f579a6f
7 changed files with 353 additions and 0 deletions

View File

@@ -26,6 +26,15 @@ jobs:
- name: release registry
run: heroku container:release -a ttlsh web
- name: build nginx
run: docker build -t registry.heroku.com/ttlsh/nginx nginx
- name: push nginx
run: docker push registry.heroku.com/ttlsh/nginx
- name: release nginx
run: heroku container:release -a ttlsh nginx
- name: build hooks
run: docker build -f hooks/Dockerfile.hooks -t registry.heroku.com/ttlsh-hooks/web hooks