10000 GitHub - tmw-LLC/maxfin_webapp2
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

tmw-LLC/maxfin_webapp2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Markdown guide including how to build the image directly with the desired name and push to Docker Hub, without needing to tag it after building:

# 🚀 Build, Tag, and Push Docker Image to Docker Hub

This guide walks you through building a Docker image directly with your Docker Hub tag (`etumoses/maxfin-webapp:latest`) and pushing it.

---

## 📦 Target Image Name

```text
docker.io/etumoses/maxfin-webapp:latest

✅ Step-by-Step Instructions

1. Build the Image with Desired Name

docker build -t etumoses/maxfin-webapp:latest .

-t specifies the tag (name:tag), and . indicates the Dockerfile is in the current directory.


2. Login to Docker Hub

docker login

Enter your Docker Hub username (etumoses) and password or access token.


3. Push the Image to Docker Hub

docker push etumoses/maxfin-webapp:latest

This uploads the image to your Docker Hub repository.


✅ Verify Upload

Go to:

https://hub.docker.com/repository/docker/etumoses/maxfin-webapp

You should see the image there with the latest tag.


🧼 (Optional) Cleanup Local Image

To delete the image locally after pushing:

docker rmi etumoses/maxfin-webapp:latest

About

No description, website, or topics provided.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 60.8%
  • HTML 37.1%
  • SCSS 2.0%
  • Other 0.1%
0