File tree Expand file tree Collapse file tree 2 files changed +3
-28
lines changed Expand file tree Collapse file tree 2 files changed +3
-28
lines changed Original file line number Diff line number Diff line change @@ -151,9 +151,7 @@ jobs:
151151 file : Dockerfile.gunicorn
152152 push : true
153153 tags : |
154- developmentseed/titiler:latest
155154 ghcr.io/${{ github.repository }}:latest
156- public.ecr.aws/${{ secrets.AWS_ECR_PUBLIC_REPO }}/titiler:latest
157155
158156 # Push `{VERSION}` when pushing a new tag
159157 - name : Build and push
@@ -166,9 +164,7 @@ jobs:
166164 file : Dockerfile.gunicorn
167165 push : true
168166 tags : |
169- developmentseed/titiler:${{ steps.tag.outputs.tag }}
170167 ghcr.io/${{ github.repository }}:${{ steps.tag.outputs.tag }}
171- public.ecr.aws/${{ secrets.AWS_ECR_PUBLIC_REPO }}/titiler:${{ steps.tag.outputs.tag }}
172168
173169 deploy :
174170 needs : [tests, publish]
Original file line number Diff line number Diff line change @@ -86,9 +86,9 @@ $ uvicorn titiler.application.main:app --reload
8686
8787## Docker
8888
89- Ready to use/deploy images can be found on DockerHub, Github and AWS public ECR registeries .
89+ Ready to use/deploy images can be found on Github registry .
9090
91- - GitHub: https://github.com/developmentseed/titiler/pkgs/container/titiler
91+ - https://github.com/developmentseed/titiler/pkgs/container/titiler
9292
9393``` bash
9494docker run --name titiler \
@@ -98,33 +98,12 @@ docker run --name titiler \
9898 --rm -it ghcr.io/developmentseed/titiler:latest
9999```
100100
101-
102- - Docker Hub: https://hub.docker.com/repository/docker/developmentseed/titiler
103-
104- ``` bash
105- docker run --name titiler \
106- -p 8000:8000 \
107- --env PORT=8000 \
108- --env WORKERS_PER_CORE=1 \
109- --rm -it developmentseed/titiler:latest
110- ```
111-
112- - AWS ECR: https://gallery.ecr.aws/developmentseed/titiler
113-
114- ``` bash
115- docker run --name titiler \
116- -p 8000:8000 \
117- --env PORT=8000 \
118- --env WORKERS_PER_CORE=1 \
119- --rm -it public.ecr.aws/developmentseed/titiler:latest
120- ```
121-
122101- Built the docker locally
123102```
124103$ git clone https://github.com/developmentseed/titiler.git
125104$ cd titiler
126105
127- $ docker-compose up --build titiler
106+ $ docker-compose up --build titiler # or titiler-uvicorn
128107```
129108
130109Some options can be set via environment variables, see: https://github.com/tiangolo/uvicorn-gunicorn-docker#advanced-usage
You can’t perform that action at this time.
0 commit comments