Modify Configuration File
Step 1 : Download the docker compose file
Download the docker-compose.yaml file
Shell
wget https://raw.githubusercontent.com/kioydiolabs/ciscapps_suite/main/Docker/docker-compose.yamlStep 2 : Modify the docker compose file
The docker-compose.yaml file looks like this :
yaml
version: '3'
services:
ciscapps:
image: sthivaios/ciscapps:latest
environment:
fullHostname: "" # full hostname with http/https here. eg. : https://ciscapps.com or http://192.168.1.150
hostname: "" # the ip or domain of the server
alphavantageKey: "XXXXXXXXXX" # your AlphaVantage API key
serverPort: "80"
ports:
- 80:80- Edit the
fullHostnamevariable so that it begins withhttp://orhttps://. This can either be an IP address or a domain. Example :https://ciscapps.comorhttp://192.168.1.100 - Edit the
hostnamevariable to the domain or IP address of the server withouthttp://orhttps://in front. Example :ciscapps.comor192.168.1.100 - Edit the
alphavantageKeyvariable to your AlphaVantage™ API key. You can get one from AlphaVantage's website. If you don't want to use the stocks app, leave that asXXXXXXXXXX - If you wish to change the default port (port 80) change the
serverPortvariable to that port. Make sure to change the port number in theports:section too, but don't change the number 80 after the:. Example : to use port 8056, set the ports to8056:80and change theserverPortvariable to8056.
Make sure to save the file!
