fr🇫🇷

Informations sur la page:

Cet article contient 241 mots.
Comptez 2 minutes de temps de lecture

Test Asciidoctor

June 3, 2019
docker asciidoctor

Additional Diagrams

Below some examples of working additional diagrams.

BlockDiagrams

Example nwdiag

You can find a lot of examples here http://blockdiag.com/en/nwdiag/nwdiag-examples.html

Failed to generate image: Could not find the 'nwdiag', 'nwdiag3' executable in PATH; add it to the PATH or specify its location using the 'nwdiag' document attribute
nwdiag {
  network dmz {
      address = "210.x.x.x/24"

      web01 [address = "210.x.x.1"];
      web02 [address = "210.x.x.2"];
  }
  network internal {
      address = "172.x.x.x/24";

      web01 [address = "172.x.x.1"];
      web02 [address = "172.x.x.2"];
      db01;
      db02;
  }
}

Exampled blockdiag

Failed to generate image: Could not find the 'blockdiag', 'blockdiag3' executable in PATH; add it to the PATH or specify its location using the 'blockdiag' document attribute
blockdiag {
   A -> B -> C -> D;
   A -> E -> F -> G;
}

Multiple Racks

Failed to generate image: Could not find the 'rackdiag', 'rackdiag3' executable in PATH; add it to the PATH or specify its location using the 'rackdiag' document attribute
rackdiag {
  // define 1st rack
  rack {
    16U;

    // define rack items
    1: UPS [2U];
    3: DB Server
    4: Web Server
    5: Web Server
    6: Web Server
    7: Load Balancer
    8: L3 Switch
  }

  // define 2nd rack
  rack {
    12U;

    // define rack items
    1: UPS [2U];
    3: DB Server
    4: Web Server
    5: Web Server
    6: Web Server
    7: Load Balancer
    8: L3 Switch
  }
}

Upgrade manuel de Nextcloud après une mise à jour de l'instance Nextcloud sous Docker

March 18, 2019
nextcloud docker

Update Nextcloud Docker instance

March 18, 2019
nextcloud docker
Vincent Gourrierec