Files
enerport-web-app/docker
Murat Özkorkmaz 5de0dfc75b
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 52s
Build and Push Docker Image / deploy (push) Successful in 4s
CI Test
2025-10-21 23:23:19 +02:00
..
2025-10-21 23:23:19 +02:00
2025-10-17 22:33:30 +02:00
2025-10-17 22:33:30 +02:00
2025-10-17 15:51:04 +02:00
2025-10-17 15:51:04 +02:00
2025-10-21 22:45:38 +02:00
2025-10-17 22:33:30 +02:00
2025-10-17 22:33:30 +02:00
2025-10-17 15:51:04 +02:00

Building and running your application

When you're ready, start your application by running: docker compose up --build.

Deploying your application to the cloud

First, build your image, e.g.: docker build -t myapp .. If your cloud uses a different CPU architecture than your development machine (e.g., you are on a Mac M1 and your cloud provider is amd64), you'll want to build the image for that platform, e.g.: docker build --platform=linux/amd64 -t myapp ..

Then, push it to your registry, e.g. docker push myregistry.com/myapp.

Consult Docker's getting started docs for more detail on building and pushing.