<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>4.2.2.Final</version>
<configuration>
<filename>${project.build.finalName}.war</filename>
<feature-pack-location>wildfly-preview@maven(org.jboss.universe:community-universe)</feature-pack-location>
<debug>true</debug>
<debugPort>5005</debugPort>
<debugSuspend>false</debugSuspend>
<startupTimeout>120</startupTimeout>
<commands>
<command>/subsystem=undertow/application-security-domain=other:write-attribute(name=integrated-jaspi, value=false)</command>
<command>reload</command>
</commands>
<feature-packs>
<feature-pack>
<location>org.wildfly:wildfly-galleon-pack:31.0.1.Final</location>
</feature-pack>
<feature-pack>
<location>org.wildfly.cloud:wildfly-cloud-galleon-pack:5.0.0.Final</location>
</feature-pack>
<feature-pack>
<location>org.wildfly:wildfly-datasources-galleon-pack:6.0.0.Final</location>
</feature-pack>
</feature-packs>
<layers>
<layer>postgresql-datasource</layer>
<layer>jsf</layer>
<layer>jaxrs</layer>
<layer>jsonp</layer>
<layer>jaxrs-server</layer>
<layer>ejb</layer>
<layer>jsonp</layer>
<layer>bean-validation</layer>
<layer>jpa</layer>
<layer>cdi</layer>
<layer>hibernate-search</layer>
<layer>ee-security</layer>
<layer>ee</layer>
<layer>logging</layer>
<layer>ee-integration</layer>
<layer>datasources</layer>
<layer>datasources-web-server</layer>
<layer>ee-core-profile-server</layer>
<layer>core-tools</layer>
</layers>
<galleon-options>
<jboss-fork-embedded>true</jboss-fork-embedded>
</galleon-options>
<runtime-name>ROOT.war</runtime-name>
</configuration>
<executions>
<execution>
<goals>
<goal>package</goal>
</goals>
</execution>
</executions>
</plugin>

--
You received this message because you are subscribed to the Google Groups "WildFly" group.
To unsubscribe from this group and stop receiving emails from it, send an email to wildfly+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/wildfly/98586c5a-0326-4ef5-b15f-c2ce64431d0bn%40googlegroups.com.
version: "3"
services:
wildfly:
build:
context: ./
dockerfile: Dockerfile
volumes:
- ./deployments:/opt/jboss/wildfly/standalone/deployments/
- ./staging:/staging
ports:
- 8080:8080
- 9990:9990
environment:
- POSTGRESQL_USER=postgres
- POSTGRESQL_PASSWORD=12345678
- POSTGRESQL_DATABASE=adriano1687_dbsucuri
- POSTGRESQL_DATASOURCE=comercialDS
- POSTGRESQL_URL=localhost
- POSTGRESQL_PORT=5432
- POSTGRESQL_HOST=localhost
FROM quay.io/wildfly/wildfly-runtime:latest
COPY --chown=jboss:root target/server $JBOSS_HOME
RUN chmod -R ug+rwX $JBOSS_HOME
RUN /opt/jboss/wildfly/bin/add-user.sh -m -u admin -p Password1! --silent
CMD ["/opt/jboss/wildfly/bin/standalone.sh", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0"]
EXPOSE 8080
To view this discussion on the web visit https://groups.google.com/d/msgid/wildfly/c0cd6932-287e-46cc-94c4-0e84957eb8c9n%40googlegroups.com.