File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed
Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -316,6 +316,31 @@ docker stop <container_id>
316316
317317Replace ` < 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:
You can’t perform that action at this time.
0 commit comments