Mittwoch, 24. Juli 2019

Howto create Docker Network with Docker Compose - Communication between Services inside of a Container

Create your network named 'yournetwork':

$ docker network create -d bridge yournetwork

You have created your own network now.
Verify it by typing

$network inspect yournetwork:

In the docker-compose.yml:

networks:
  yournetwork: #TODO remove this hard-coded network reference
    external:
      name: ${NETWORK}

  yourservice:
  container_name: "your-container-name"
    image: your-image-name:${TAG:-latest} #will pull the latest                                                #tagged image of yours
    ports:
    - 8080:8080 #example localhost:8080
    net: ${NETWORK}

Start it with:

$ NETWORK=yournetwork docker-compose-up

Dienstag, 23. Juli 2019

[Solution] Maven Proxy Issue - Maven not downloading artifacts - Maven behind Proxy

Your settings.xml - mine is in etc/maven/settings.xml on Linux - must look like:

<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-->

<settings
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0                                              http://maven.apache.org/xsd/settings-1.0.0.xsd">

<pluginGroups>
</pluginGroups>

<proxies>
</proxies>

<servers>

<server>
<id>myRepository</id>
<username>your user</username>
<password>your pw</password>
<configuration>
<httpConfiguration>
<all>
<usePreemptive>true</usePreemptive>
</all>
<settings>
</settings>
</httpConfiguration>
</configuration>
</server>

</servers>

<mirrors>

<mirror>
<id>myRepository</id>
<name>Proxy for XY</name>
<url>http://<maven proxy url></url>
<mirrorOf>*,!sonar</mirrorOf>
</mirror>
</mirrors>

<profiles>

</profiles>

</settings>




Donnerstag, 18. Juli 2019

DOCKER - No Space Left on Device // How to clean Docker on Linux

Sometimes Docker will simply claim to much space. Time for a clean up ;)

docker system prune -a -f

Attention: if your network is not in the default, this command will eventually erase your subnet immediately.

NEW BLOG! http://cleancode.consulting/

Dear Reader, This Blog is closed and remains as an archive. Please find our new Blog at  http://cleancode.consulting/