You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -12,13 +12,41 @@ A Spectro Cloud demo application. This is the database that supports the Hello U
12
12
13
13
The [Hello Universe](https://github.com/spectrocloud/hello-universe) app includes an [API server](https://github.com/spectrocloud/hello-universe-api) that relies on a Postgres database for storing the number of clicks and other metadata about the clicks such as the browser, os, and timestamp. For your convenience, a Postgres container is available for use.
14
14
15
+
## Prerequisites
16
+
17
+
Ensure [Docker Desktop](https://www.docker.com/products/docker-desktop/) is available on your local machine.
18
+
19
+
- Use the following command and ensure you receive an output displaying the version number.
20
+
```
21
+
docker version
22
+
```
23
+
24
+
Alternatively, you can install [Podman](https://podman.io/docs/installation).
25
+
26
+
- If you are not using a Linux operating system, create and start the Podman Machine in your local environment. Otherwise, skip this step.
27
+
```
28
+
podman machine init
29
+
podman machine start
30
+
```
31
+
- Use the following command and ensure you receive an output displaying the installation information.
32
+
```
33
+
podman info
34
+
```
35
+
15
36
## Usage
16
37
17
-
To get use the container you can issue the following command to download the container.
38
+
You can issue the following commands to use the container with Docker.
0 commit comments