Skip to content

Commit 2f5b865

Browse files
committed
deprecate AWS ECR AND DockerHub
1 parent 739ceae commit 2f5b865

File tree

2 files changed

+3
-28
lines changed

2 files changed

+3
-28
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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]

README.md

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff 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
9494
docker 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

130109
Some options can be set via environment variables, see: https://github.com/tiangolo/uvicorn-gunicorn-docker#advanced-usage

0 commit comments

Comments
 (0)