Hello guys;
I was wondering if you were smarter than me!
I’m currently running version 11 on ECS with docker entrypoint
And was wondering how can I smartly migrate to version 16 and more later.
ENTRYPOINT [ "/opt/jboss/tools/docker-entrypoint.sh" ] CMD ["-b", "0.0.0.0"] (currently running version 11)
CMD /opt/jboss/keycloak/bin/jboss-cli.sh --file=/opt/jboss/keycloak/bin/migrate-standalone.cli
(i would use this to migrate)
How can we smartly “switch” between those two lines? i create a “migration service” on ECS? I have multiples environments (dev;staging;prod;etc) that’s why i’m looking for smartness.
I could push an image with the migrate-standalone.cli command and resend another image after the migration is over but that’s not perfect.
Thanks alot guys;