Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/duplocloud/hello-world
A containerized hello world website a la DuploCloud
https://github.com/duplocloud/hello-world
Last synced: 19 days ago
JSON representation
A containerized hello world website a la DuploCloud
- Host: GitHub
- URL: https://github.com/duplocloud/hello-world
- Owner: duplocloud
- Created: 2024-10-14T19:40:48.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-07T22:59:58.000Z (3 months ago)
- Last Synced: 2024-11-08T00:16:59.932Z (3 months ago)
- Language: HTML
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello-world
A containerized hello world website a la DuploCloudFor building & running locally:
```
docker build -t duplocloud/hello-world:1.0.0 .
```
```
docker run -it -d -p 80:80 hello-world:1.0.0
```
Access at `localhost`For building on MacOS and deploying to K8s (Linux):
```
docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 -t duplocloud/hello-world:1.0.1 .
```
Note that on MacOS, you'll need to enable the containerd backend [as shown here](https://docs.docker.com/desktop/features/containerd/), and see [here](https://docs.docker.com/build/building/multi-platform/) for reference. MacOS uses a different kernel and stuff from Linux, so you need to account for that.