command
Version:
v12.2.0-alpha3
Opens a new window with list of versions in this module.
Published: Sep 22, 2021
License: BSD-3-Clause
Opens a new window with license information.
Imports: 1
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
Basic Example
The only requirement for this example is Docker.
Docker Compose
The Docker Compose is pre-installed with Docker for Windows. For linux please follow the steps described at: https://docs.docker.com/compose/install/.
Build and run the application for linux arch and expose it on http://localhost:8080.
$ docker-compose up
See docker-compose file.
Without Docker Compose
- Build the image as "myapp" (docker build)
- Run the image and map exposed ports (-p 8080:8080)
- Attach the interactive mode so CTRL/CMD+C signals are respected to shutdown the Iris Server (-it)
- Cleanup the image on finish (--rm)
$ docker build -t myapp .
$ docker run --rm -it -p 8080:8080 myapp:latest
Documentation
¶
There is no documentation for this package.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.