docker build -t aerogear/unifiedpush-wildfly .
With the following dockerfile:
Unfortunately the dockerfile seems to point to an invalid tarball:
https://hub.docker.com/r/
RUN curl -L -o /opt/aerogear-unifiedpush-
So I went to:
https://github.com/aerogear/
And got:
https://github.com/aerogear/
Then tried to deploy the wars getting a ton of errors: https://pastebin.com/G89f3EpM
It
seems that among other problems a mysql is being deployed on my server
which makes no sense as I've provided the variables in standalone.xml:
<connection-url>jdbc:mysql://${env.UNIFIEDPUSH_PORT_3306_ TCP_ADDR}:${env.UNIFIEDPUSH_ PORT_3306_TCP_PORT}/${env. UNIFIEDPUSH_ENV_MYSQL_ DATABASE}?useUnicode=true& characterEncoding=UTF-8</ connection-url>
<user-name>${env.UNIFIEDPUSH_ENV_MYSQL_USER}</user-name>
<password>${env.UNIFIEDPUSH_ENV_MYSQL_PASSWORD}</password>
<connection-url>jdbc:mysql://${env.KEYCLOAK_PORT_3306_TCP_ ADDR}:${env.KEYCLOAK_PORT_ 3306_TCP_PORT}/${env.KEYCLOAK_ ENV_MYSQL_DATABASE}? useUnicode=true& characterEncoding=UTF-8</ connection-url>
<user-name>${env.KEYCLOAK_ENV_MYSQL_USER}</user-name>
<password>${env.KEYCLOAK_ENV_MYSQL_PASSWORD}</password>
<core-environment>
</core-environment>
<recovery-environment socket-binding="txn-recovery-environment" status-socket-binding="txn- status-manager"/>
<socket-binding name="txn-recovery-environment" port="4712"/>
I'm not sure if the case is related to:
https://issues.jboss.org/