moving docker to a separate package
This commit is contained in:
		
							
								
								
									
										20
									
								
								.idea/workspace.xml
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										20
									
								
								.idea/workspace.xml
									
									
									
										generated
									
									
									
								
							| @@ -197,13 +197,6 @@ | |||||||
|       <option name="presentableId" value="Default" /> |       <option name="presentableId" value="Default" /> | ||||||
|       <updated>1598862102028</updated> |       <updated>1598862102028</updated> | ||||||
|     </task> |     </task> | ||||||
|     <task id="LOCAL-00018" summary="adding remove button for httpHeaders form"> |  | ||||||
|       <created>1599493271888</created> |  | ||||||
|       <option name="number" value="00018" /> |  | ||||||
|       <option name="presentableId" value="LOCAL-00018" /> |  | ||||||
|       <option name="project" value="LOCAL" /> |  | ||||||
|       <updated>1599493271888</updated> |  | ||||||
|     </task> |  | ||||||
|     <task id="LOCAL-00019" summary="fix for null headers"> |     <task id="LOCAL-00019" summary="fix for null headers"> | ||||||
|       <created>1599550125788</created> |       <created>1599550125788</created> | ||||||
|       <option name="number" value="00019" /> |       <option name="number" value="00019" /> | ||||||
| @@ -540,7 +533,14 @@ | |||||||
|       <option name="project" value="LOCAL" /> |       <option name="project" value="LOCAL" /> | ||||||
|       <updated>1601377932874</updated> |       <updated>1601377932874</updated> | ||||||
|     </task> |     </task> | ||||||
|     <option name="localTasksCounter" value="67" /> |     <task id="LOCAL-00067" summary="jenkins - testing remote deploy"> | ||||||
|  |       <created>1601380234222</created> | ||||||
|  |       <option name="number" value="00067" /> | ||||||
|  |       <option name="presentableId" value="LOCAL-00067" /> | ||||||
|  |       <option name="project" value="LOCAL" /> | ||||||
|  |       <updated>1601380234222</updated> | ||||||
|  |     </task> | ||||||
|  |     <option name="localTasksCounter" value="68" /> | ||||||
|     <servers /> |     <servers /> | ||||||
|   </component> |   </component> | ||||||
|   <component name="UnknownFeatures"> |   <component name="UnknownFeatures"> | ||||||
| @@ -683,13 +683,13 @@ | |||||||
|     </state> |     </state> | ||||||
|     <state x="277" y="57" key="SettingsEditor/0.0.1536.824/1920.0.1920.1040@0.0.1536.824" timestamp="1600935670743" /> |     <state x="277" y="57" key="SettingsEditor/0.0.1536.824/1920.0.1920.1040@0.0.1536.824" timestamp="1600935670743" /> | ||||||
|     <state x="277" y="57" key="SettingsEditor/0.0.1536.824@0.0.1536.824" timestamp="1600868466042" /> |     <state x="277" y="57" key="SettingsEditor/0.0.1536.824@0.0.1536.824" timestamp="1600868466042" /> | ||||||
|     <state x="361" y="145" key="Vcs.Push.Dialog.v2" timestamp="1601377934553"> |     <state x="361" y="145" key="Vcs.Push.Dialog.v2" timestamp="1601380236110"> | ||||||
|       <screen x="0" y="0" width="1536" height="824" /> |       <screen x="0" y="0" width="1536" height="824" /> | ||||||
|     </state> |     </state> | ||||||
|     <state x="451" y="183" key="Vcs.Push.Dialog.v2/-1920.0.1536.832/0.0.1920.1040@0.0.1920.1040" timestamp="1600275760386" /> |     <state x="451" y="183" key="Vcs.Push.Dialog.v2/-1920.0.1536.832/0.0.1920.1040@0.0.1920.1040" timestamp="1600275760386" /> | ||||||
|     <state x="361" y="145" key="Vcs.Push.Dialog.v2/0.0.1536.824/1920.0.1920.1040@0.0.1536.824" timestamp="1600350277680" /> |     <state x="361" y="145" key="Vcs.Push.Dialog.v2/0.0.1536.824/1920.0.1920.1040@0.0.1536.824" timestamp="1600350277680" /> | ||||||
|     <state x="2371" y="183" key="Vcs.Push.Dialog.v2/0.0.1536.824/1920.0.1920.1040@1920.0.1920.1040" timestamp="1600351824385" /> |     <state x="2371" y="183" key="Vcs.Push.Dialog.v2/0.0.1536.824/1920.0.1920.1040@1920.0.1920.1040" timestamp="1600351824385" /> | ||||||
|     <state x="361" y="145" key="Vcs.Push.Dialog.v2/0.0.1536.824@0.0.1536.824" timestamp="1601377934553" /> |     <state x="361" y="145" key="Vcs.Push.Dialog.v2/0.0.1536.824@0.0.1536.824" timestamp="1601380236110" /> | ||||||
|     <state x="478" y="145" width="579" height="592" key="find.popup" timestamp="1599656923861"> |     <state x="478" y="145" width="579" height="592" key="find.popup" timestamp="1599656923861"> | ||||||
|       <screen x="0" y="0" width="1536" height="824" /> |       <screen x="0" y="0" width="1536" height="824" /> | ||||||
|     </state> |     </state> | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| FROM maven:3.6.3-jdk-14 as builder | FROM maven:3.6.3-jdk-14 as builder | ||||||
| WORKDIR application | WORKDIR application | ||||||
| COPY ./ ./ | COPY ../../../../../../.. ./ | ||||||
| RUN mvn clean install | RUN mvn clean install | ||||||
| 
 | 
 | ||||||
| FROM openjdk:14 as layerBuilder | FROM openjdk:14 as layerBuilder | ||||||
| @@ -5,7 +5,7 @@ services: | |||||||
|     restart: "no" |     restart: "no" | ||||||
|   klaus: |   klaus: | ||||||
|     build: |     build: | ||||||
|       context: . |       context: ../../../../../../.. | ||||||
|       dockerfile: Dockerfile |       dockerfile: Dockerfile | ||||||
|     container_name: klaus |     container_name: klaus | ||||||
|     restart: "no" |     restart: "no" | ||||||
		Reference in New Issue
	
	Block a user
	 Szakalakamaka
					Szakalakamaka