Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit c1388f7e authored by Sebastian-Ion TINCU's avatar Sebastian-Ion TINCU
Browse files

Pull request #86: EDELIVERY-13083 Investigate and fix Bamboo plans (group effort)

Merge in EDELIVERY/smp from bugfix/EDELIVERY-13083-investigate-and-fix-bamboo-plans-group-effort to development

* commit '494cda14':
  EDELIVERY-13083 Investigate and fix Bamboo plans (group effort)
parents 5730c6d6 494cda14
No related branches found
No related tags found
No related merge requests found
Pipeline #154863 passed with warnings
...@@ -9,17 +9,17 @@ NOTE : that the jdk 11 JDPA_ADDRESS is by default "*:5005". To make it work with ...@@ -9,17 +9,17 @@ NOTE : that the jdk 11 JDPA_ADDRESS is by default "*:5005". To make it work with
# Image build # Image build
docker build -t smp . docker build -t domismp-tomcat-mysql .
# Run container based on smp image # Run container based on smp image
docker run --name smp -p 8080:8080 smp docker run --name smp -p 8080:8080 domismp-tomcat-mysql
docker run --name smp -it --rm -p [http-port]:8080 edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:${SMP_VERSION} docker run --name smp -it --rm -p [http-port]:8080 edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/domismp-tomcat-mysql:${SMP_VERSION}
example: example:
docker run --name smp --rm -it -p 8180:8080 -p 3316:3306 -e JDK_VERSION=8 -e JDPA_ADDRESS=5005 edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:5.0-SNAPSHOT docker run --name smp --rm -it -p 8180:8080 -p 3316:3306 -e JDK_VERSION=8 -e JDPA_ADDRESS=5005 edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/domismp-tomcat-mysql:5.0-SNAPSHOT
## SMP (param: -p 8180:8080 ) ## SMP (param: -p 8180:8080 )
url: http://localhost:8180/smp url: http://localhost:8180/smp
...@@ -39,7 +39,7 @@ Password: smp ...@@ -39,7 +39,7 @@ Password: smp
## Volume (-v /opt/docker-data/smp:/data) ## Volume (-v /opt/docker-data/smp:/data)
Mysql database files and tomcat configuration (and logs) can be externalized for experimenting with different SMP settings. Mysql database files and tomcat configuration (and logs) can be externalized for experimenting with different SMP settings.
docker run --name smp --rm -it -p 8180:8080 -v /opt/docker-data/smp:/data edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:5.0-SNAPSHOT docker run --name smp --rm -it -p 8180:8080 -v /opt/docker-data/smp:/data edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/domismp-tomcat-mysql:5.0-SNAPSHOT
# Start docker with pre-init data # Start docker with pre-init data
1. copy init sql script to folder (create folder) 1. copy init sql script to folder (create folder)
...@@ -55,7 +55,7 @@ example: ...@@ -55,7 +55,7 @@ example:
Then start the docker as: Then start the docker as:
docker run --name smp --rm -it -p 8180:8080 -v ./db-scripts:/tmp/custom-data/ edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:5.0-SNAPSHOT docker run --name smp --rm -it -p 8180:8080 -v ./db-scripts:/tmp/custom-data/ edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/domismp-tomcat-mysql:5.0-SNAPSHOT
# Start with the docker compose file # Start with the docker compose file
...@@ -65,7 +65,7 @@ with the following content: ...@@ -65,7 +65,7 @@ with the following content:
version: '3.8' version: '3.8'
services: services:
tomcat-mysql-sml: tomcat-mysql-sml:
image: edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/smp-sml-tomcat-mysql:5.0-SNAPSHOT image: edelivery-docker.devops.tech.ec.europa.eu/edeliverytest/domismp-tomcat-mysql:5.0-SNAPSHOT
ports: ports:
- "3316:3306" - "3316:3306"
- "8180:8080" - "8180:8080"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment