Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1 KB

README.md

File metadata and controls

61 lines (42 loc) · 1 KB

Kakaw (aka SoialApp)

A highly discouraged solution for all your instant messaging needs.

Build and push to docker hub

docker context use default
docker compose build
docker compose push

Alterantively

./build-push.bat

Deploy to Azure ACI

Create Docker context for Azure ACI

https://docs.docker.com/cloud/aci-integration/

Deploy a single container

docker --context <aci-context> run -p 80:80 <user>/<image>:latest

Deploy with docker compose

docker --context <aci-context> compose up

Alternatively

./deploy-aci.bat <aci-context>

Build with Buildah and push to Docker Hub

Login (required to push)

buildah login docker.io

Build (example for UserProfileService)

git clone https://github.com/PythonHackerr/Social-Web-App.git
cd Social-Web-App/
buildah bud -f UserProfileService/Dockerfile -t thejoun/user-profile-service .

Push (example for UserProfileService)

buildah push thejoun/user-profile-service:latest