- Feature I
- Bugfix I
| package de.example.filters | |
| import javax.inject.Inject | |
| import akka.stream.Materializer | |
| import play.api.mvc._ | |
| import sun.misc.BASE64Decoder | |
| import scala.concurrent.{ExecutionContext, Future} |
| # Creates zip-archives for each directory in the current path | |
| Get-ChildItem . | ForEach-Object { | |
| if ($_.PSIsContainer) { | |
| $dirName = $_.Name | |
| $zipName = "$dirName`.zip" | |
| echo "Compress $dirName" | |
| Compress-Archive -Path $dirName\* -DestinationPath $zipName | |
| } | |
| } |
The goal of this instruction is to enable users to create Docker images that contain a predefined postgres instance with existing schema and data. We will use the official docker postgres image and mostly docker's own commands.
The first step is to setup a docker container running postgres containing t# Create snapshot of dockerized postgres
The goal of this instruction is to enable users to create Docker images that contain a predefined postgres instance with existing schema and data. We will use the official docker postgres image and mostly docker's own commands.
The first step is to setup a docker container running postgres containing the schema and data that we want to include in the created snapshot:
| ' Local setup: ' colors | |
| ' Store this stylesheet next to you diagrma and include with: | |
| ' !include style.plantuml | |
| ' Remote setup: | |
| ' !include https://gist.githubusercontent.com/janjaali/8c94d1b836ac30fec85595e4c29ac8eb/raw/6d3d94d78db3dd77a3b878708378d181c43fe621/style.plantuml | |
| ' colors | |
| !$MAIN = "#176ccb" | |
| !$WHITE = "#ffffff" |
| // https://github.com/liancheng/scalafix-organize-imports | |
| OrganizeImports { | |
| blankLines = Auto | |
| coalesceToWildcardImportThreshold = 5 | |
| expandRelative = false | |
| groupExplicitlyImportedImplicitsSeparately = false | |
| groupedImports = Merge | |
| groups = [ | |
| "*" | |
| "java." |