All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ms.docker.docker-compose.4.3.3.source-code.docker-compose-ais.yml Maven / Gradle / Ivy

The newest version!
version: '2'
services:
  wildfly:
    image: uvms/wildfly-unionvms:${project.version}
    container_name: wildfly
    ports:
      - "29990:9990"
      - "28787:8787"
      - "28080:8080"
      - "28443:8443"
    volumes:
      - /app/logs:/app/logs
      - /opt/jboss/wildfly/standalone/log:/opt/jboss/wildfly/standalone/log
    depends_on:
      - postgres
    networks:
      - uvms-ais-net
    command: [ "/opt/jboss/start.sh", "/opt/jboss/wildfly/bin/standalone.sh", "-c", "standalone-full.xml", "-b", "0.0.0.0", "-bmanagement", "0.0.0.0", "--debug" ]
  postgres:
    image: uvms/postgres-release:${project.version}
    container_name: postgres
    ports:
      - "25432:5432"
    networks:
      - uvms-ais-net
  ais-simulator:
    image: uvms/ais-simulator:latest
    container_name: ais-simulator
    ports:
      - "28040:8040"
    networks:
      - uvms-ais-net
networks:
  uvms-ais-net:
    driver: bridge




© 2015 - 2024 Weber Informatics LLC | Privacy Policy