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
The quickstart script will configure, build, and start the ANMS system for the first time. See comments in the script for additional details, including optional ENV variables to override default behavior.
82
+
The quickstart script will configure, pull, and start the ANMS system for the first time. See comments in the script for additional details, including optional ENV variables to override default behavior.
83
+
84
+
NOTICE: By default, quick start will pull pre-built containers from the github registry (ghcr.io). To force a rebuild, run it as `FORCE_REBULD=y ./quickstart.sh`. See the script header for details.
83
85
84
86
To stop the system use `podman compose -f testenv-compose.yml -f docker-compose.yml down`.
85
87
@@ -104,6 +106,7 @@ Choose the appropriate docker, podman or podman-compose commands in the directio
104
106
- Clone this repository recursively (`git clone --recursive https://github.com/NASA-AMMOS/anms.git`)
- OPTIONAL: The next 2 steps will build all ANMS containers. If desired, these steps can be replaced with 'pull'ing prebuilt containers from ghcr.
107
110
- Build Core Images using one of the following:
108
111
-`docker compose -f docker-compose.yml build`
109
112
-`podman compose -f docker-compose.yml build`
@@ -228,6 +231,8 @@ Refer to the `.env` file for port binding overrides, or `docker-compose.yml` for
228
231
229
232
### ANMS-UI is not visible at hostname
230
233
234
+
Ensure that you are running with the 'full' profile. This is the default option when using the `.env` file, however some older versions of podman-compose may not parse the COMPOSE_PROFILES ENV variable correctly. If this is the case, specify the profile explicitly in your compose up commands. For example, `podman compose --profile full up`.
235
+
231
236
Check the startup logs for any errors. If using podman, some port numbers may need to be remapped using the `.env` file to higher numbered ports, or the system configuration modified to adjust permissions (not recommended).
232
237
233
238
If you go to your browser and hostname:9030 (replace hostname with the server's hostname) and you see the ANMS UI,
0 commit comments