Modifying a Configuration

To modify an existing configuration, use the edit subcommand as follows:

cd cue-front-path/setup
docker-compose run setup edit configuration-set

where configuration-set is the name of the configuration you want to modify.

The edit subcommand basically works in the same way as the add subcommand – it displays the same sequence of prompts. In this case, however, the default values offered by setup are not the standard defaults, but the configuration set's existing values. This means you can just accept all defaults except for the specific values you want to modify.

In order to see the effect of the changes you have made, you now need to rebuild and restart all the CUE Front containers:

cd cue-front-path/configuration-set
docker-compose build
docker-compose down
docker-compose up -d

If you do not see any effect from the changes you have made, try rebuilding again, this time specifying a --no-cache option with the build command:

docker-compose build --no-cache
docker-compose down
docker-compose up -d