Skip to content

Commit dfbe45a

Browse files
docs: update Harbor image pulls
1 parent 32ed1d4 commit dfbe45a

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[![Downloads](https://img.shields.io/pypi/dm/pyatlan.svg)](https://pypi.org/project/pyatlan/)
1111
[![Build Status](https://github.com/atlanhq/atlan-python/actions/workflows/pyatlan-publish.yaml/badge.svg)](https://github.com/atlanhq/atlan-python/actions/workflows/pyatlan-publish.yaml)
1212
[![Documentation](https://img.shields.io/badge/docs-developer.atlan.com-blue.svg)](https://developer.atlan.com/getting-started/python-sdk/)
13-
[![Docker](https://img.shields.io/badge/docker-ghcr.io%2Fatlanhq%2Fatlan--python-blue.svg)](https://github.com/atlanhq/atlan-python/pkgs/container/atlan-python)
13+
[![Docker](https://img.shields.io/badge/docker-harbor-blue.svg)](https://registry.atlan.com/)
1414

1515
---
1616

@@ -84,29 +84,28 @@ uv sync --all-groups
8484

8585
## 🐳 Docker
8686

87-
### Pre-built Images
88-
87+
### Pre-built Images (Harbor)
8988

9089
```bash
91-
# Latest version
92-
docker pull ghcr.io/atlanhq/atlan-python:latest
90+
# Latest main image
91+
docker pull registry.atlan.com/public/pyatlan:main-latest
9392

94-
# Specific version
95-
docker pull ghcr.io/atlanhq/atlan-python:7.1.3
93+
# Version + Python tag
94+
docker pull registry.atlan.com/public/pyatlan:8.5.1-3.11
9695
```
9796

9897
### Usage
9998

10099
```bash
101100
# Interactive Python session
102-
docker run -it --rm ghcr.io/atlanhq/atlan-python:latest
101+
docker run -it --rm registry.atlan.com/public/pyatlan:main-latest
103102

104103
# Run a script
105104
docker run -it --rm \
106105
-v $(pwd):/app \
107106
-e ATLAN_API_KEY=your_key \
108107
-e ATLAN_BASE_URL=https://your-tenant.atlan.com \
109-
ghcr.io/atlanhq/atlan-python:latest \
108+
registry.atlan.com/public/pyatlan:main-latest \
110109
python your_script.py
111110
```
112111

0 commit comments

Comments
 (0)