Skip to content

Commit b7f7de0

Browse files
committed
Add tag to readme
1 parent 9e54991 commit b7f7de0

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,31 @@ docker stop <container_id>
316316

317317
Replace `<container_id>` with the actual container ID of the running container.
318318

319+
### Push image & versioning to specific registry
320+
321+
To push the Docker image to a specific registry, you can use the following commands:
322+
323+
```bash
324+
docker tag llm-tinyllama-backend:latest ghcr.io/adribaeza/llm-tinyllama-backend:latest
325+
docker push ghcr.io/adribaeza/llm-tinyllama-backend:latest
326+
```
327+
328+
```bash
329+
docker tag llm-tinyllama-frontend:latest ghcr.io/adribaeza/llm-tinyllama-frontend:latest
330+
docker push ghcr.io/adribaeza/llm-tinyllama-frontend:latest
331+
```
332+
### Tag with specific version
333+
334+
```bash
335+
docker tag llm-tinyllama-backend:latest ghcr.io/adribaeza/llm-tinyllama-backend:1.0.0
336+
docker push ghcr.io/adribaeza/llm-tinyllama-backend:1.0.0
337+
```
338+
339+
```bash
340+
docker tag llm-tinyllama-frontend:latest ghcr.io/adribaeza/llm-tinyllama-frontend:1.0.0
341+
docker push ghcr.io/adribaeza/llm-tinyllama-frontend:1.0.0
342+
```
343+
319344
#### Accessing the Services
320345

321346
- To access the frontend in Docker, go to:

0 commit comments

Comments
 (0)