I’m encountering an issue while working with OpenRemote, and I’d appreciate any help in resolving it. Here’s the situation:
- I modified the code in OpenRemote**:
- I made changes to some components in the project code.
- After editing the code, I successfully built the project without any errors.
- Running `docker-compose -f profile/dev-ui.yml up -d :
- After building successfully, I run
docker-compose -f profile/dev-ui.yml up -d
to bring up the containers. - However, docker-compose is still running the default code (the unchanged version), not the code I just modified.
What I’ve tried so far:
- Checked the
dev-ui.yml
file to make sure the services and containers are configured correctly. - Used
docker-compose build
to rebuild the images, followed bydocker-compose up -d
, but the changes don’t reflect.