https://github.com/duncdrum/hsg-test
https://github.com/duncdrum/hsg-test
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/duncdrum/hsg-test
- Owner: duncdrum
- Created: 2024-04-02T17:16:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T17:36:34.000Z (about 2 years ago)
- Last Synced: 2024-05-02T01:40:12.128Z (about 2 years ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hsg-project
Docker repo for HSG project
## Build and run Dockerfile on your local machine
1. build: `docker build --no-cache -t hsg-project .`
2. run: `docker run -p 8080:8080 hsg-project`
## Build and publish new Docker image
* Docker Hub: https://hub.docker.com/r/joewiz/hsg-project
1. `docker buildx build --platform linux/amd64,linux/arm64 -t joewiz/hsg-project:latest .`
2. `docker push joewiz/hsg-project:latest`
or in one command:
1. `docker buildx build . --platform linux/amd64,linux/arm64 -t joewiz/hsg-project:latest --push`