This is the base jboss/wildfly image with admin turned on and standalone listening on 0.0.0.0
253
#!/usr/bin/env bash
name="jboss" user="" # "-u root" ports="-p 8080:8080 -p 8443:8443 -p 9990:9990" volumes="-v /home/davidedson/Downloads:/downloads" image="eddo888/wildfly" command=""
if docker ps -a | grep "$image" | grep -w "$name" > /dev/null then docker start $name docker exec -ti $user $name bash else docker run -ti -m 2g $ports $volumes --name $name $image $command fi
Content type
Image
Digest
Size
272.6 MB
Last updated
almost 11 years ago
docker pull eddo888/wildfly