https://github.com/mikesir87/cats
https://github.com/mikesir87/cats
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mikesir87/cats
- Owner: mikesir87
- Created: 2016-06-24T04:00:00.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2023-07-12T19:06:31.000Z (almost 2 years ago)
- Last Synced: 2025-03-23T22:52:33.115Z (2 months ago)
- Language: Python
- Size: 836 KB
- Stars: 14
- Watchers: 3
- Forks: 18
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NOTE: This project is effectively a fork of a mini-lab of [DockerCon 2016 US Orchestration Lab](https://github.com/docker/dcus-hol-2016/tree/master/docker-orchestration). Just pulled it into a standalone project for easier building.
## Running the App
```
docker container run --rm -tip 5000:5000 mikesir87/cats:1.0
OR
docker container run --rm -tip 5000:5000 mikesir87/cats:2.0
```## Building
Since this project has three different demo versions and uses the same Dockerfile for each, the build command is a _little_ more complicated.
```
docker build -f Dockerfile -t mikesir87/cats:1.0 ./v1
```To perform multi-architecture builds:
```
docker buildx build --push --platform linux/arm/v7,linux/arm64/v8,linux/amd64 --tag mikesir87/cats:1.0 -f Dockerfile ./v1
```