A collection of docker online resources. Source
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML> | |
<!-- | |
/* | |
* Remote File Copy Demo 1.0 | |
* | |
* Copyright 2012, Sebastian Tschan | |
* https://blueimp.net | |
* | |
* Licensed under the MIT license: | |
* http://www.opensource.org/licenses/MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
IMG_PHP="tutum/apache-php:latest" | |
IMG_DB="mysql:latest" | |
CONT_DB="mysql_container" | |
CONT_PHP="php_container" | |
PASS_DB="clavedatabase" | |
DIR_SRC=$PWD"/src" | |
DB_DIR=$PWD"/data" | |
DB_NAME="database_name" |