Guest User

Untitled

a guest
Jun 14th, 2018
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.58 KB | None | 0 0
  1. docker-compose up -d nginx mysql
  2.  
  3. D:weblaradock>docker-compose up -d nginx mysql
  4. Creating laradock_workspace_1 ...
  5. Creating laradock_mysql_1 ... error
  6. Creating laradock_workspace_1 ... error
  7. ERROR: for laradock_mysql_1 Cannot create container for service mysql:
  8. b'Drive has not been shared'
  9.  
  10. ERROR: for laradock_workspace_1 Cannot create container for service
  11. workspace: b'Drive has not been shared'
  12.  
  13. ERROR: for mysql Cannot create container for service mysql: b'Drive has not
  14. been shared'
  15.  
  16. ERROR: for workspace Cannot create container for service workspace: b'Drive
  17. has not been shared'
  18. ERROR: Encountered errors while bringing up the project.
  19.  
  20. ###########################################################
  21. ###################### General Setup ######################
  22. ###########################################################
  23.  
  24. ### Paths #################################################
  25.  
  26. # Point to the path of your applications code on your host
  27. APP_CODE_PATH_HOST=../
  28.  
  29. # Point to where the `APP_CODE_PATH_HOST` should be in the container. You may add flags to the path `:cached`, `:delegated`. When using Docker Sync add `:nocopy`
  30. APP_CODE_PATH_CONTAINER=/var/www:cached
  31.  
  32. # Choose storage path on your machine. For all storage systems
  33. DATA_PATH_HOST=~/.laradock/data
  34.  
  35. ### Drivers ################################################
  36.  
  37. # All volumes driver
  38. VOLUMES_DRIVER=local
  39.  
  40. # All Networks driver
  41. NETWORKS_DRIVER=bridge
  42.  
  43. ### Docker compose files ##################################
  44.  
  45. # Select which docker-compose files to include. If using docker-sync append `:docker-compose.sync.yml` at the end
  46. COMPOSE_FILE=docker-compose.yml
  47.  
  48. # Change the separator from : to ; on Windows
  49. COMPOSE_PATH_SEPARATOR=;
  50.  
  51. ### PHP Version ###########################################
  52.  
  53. # Select a PHP version of the Workspace and PHP-FPM containers (Does not apply to HHVM). Accepted values: 7.2 - 7.1 - 7.0 - 5.6
  54. PHP_VERSION=7.2
  55.  
  56. ### PHP Interpreter #######################################
  57.  
  58. # Select the PHP Interpreter. Accepted values: hhvm - php-fpm
  59. PHP_INTERPRETER=php-fpm
  60.  
  61. ### Docker Host IP ########################################
  62.  
  63. # Enter your Docker Host IP (will be appended to /etc/hosts). Default is `10.0.75.1`
  64. DOCKER_HOST_IP=10.0.75.1
  65.  
  66. ### Remote Interpreter ####################################
  67.  
  68. # Choose a Remote Interpreter entry matching name. Default is `laradock`
  69. PHP_IDE_CONFIG=serverName=laradock
  70.  
  71. ### Windows Path ##########################################
  72.  
  73. # A fix for Windows users, to ensure the application path works
  74. COMPOSE_CONVERT_WINDOWS_PATHS=1
  75.  
  76. ### Environment ###########################################
  77.  
  78. # If you need to change the sources (i.e. to China), set CHANGE_SOURCE to true
  79. CHANGE_SOURCE=false
  80.  
  81. ### Docker Sync ###########################################
  82.  
  83. # If you are using Docker Sync. For `osx` use 'native_osx', for `windows` use 'unison', for `linux` docker-sync is not required
  84. DOCKER_SYNC_STRATEGY=unison
  85.  
  86. ###########################################################
  87. ################ Containers Customization #################
  88. ###########################################################
  89.  
  90. ### WORKSPACE #############################################
  91.  
  92. WORKSPACE_COMPOSER_GLOBAL_INSTALL=true
  93. WORKSPACE_COMPOSER_REPO_PACKAGIST=
  94. WORKSPACE_INSTALL_NODE=true
  95. WORKSPACE_NODE_VERSION=stable
  96. WORKSPACE_NPM_REGISTRY=
  97. WORKSPACE_INSTALL_YARN=true
  98. WORKSPACE_YARN_VERSION=latest
  99. WORKSPACE_INSTALL_PHPREDIS=true
  100. WORKSPACE_INSTALL_WORKSPACE_SSH=false
  101. WORKSPACE_INSTALL_SUBVERSION=false
  102. WORKSPACE_INSTALL_XDEBUG=false
  103. WORKSPACE_INSTALL_LDAP=false
  104. WORKSPACE_INSTALL_SOAP=false
  105. WORKSPACE_INSTALL_IMAP=false
  106. WORKSPACE_INSTALL_MONGO=false
  107. WORKSPACE_INSTALL_AMQP=false
  108. WORKSPACE_INSTALL_MSSQL=false
  109. WORKSPACE_INSTALL_DRUSH=false
  110. WORKSPACE_DRUSH_VERSION=8.1.17
  111. WORKSPACE_INSTALL_DRUPAL_CONSOLE=false
  112. WORKSPACE_INSTALL_AEROSPIKE=false
  113. WORKSPACE_INSTALL_V8JS=false
  114. WORKSPACE_INSTALL_LARAVEL_ENVOY=false
  115. WORKSPACE_INSTALL_LARAVEL_INSTALLER=false
  116. WORKSPACE_INSTALL_DEPLOYER=false
  117. WORKSPACE_INSTALL_PRESTISSIMO=false
  118. WORKSPACE_INSTALL_LINUXBREW=false
  119. WORKSPACE_INSTALL_MC=false
  120. WORKSPACE_INSTALL_SYMFONY=false
  121. WORKSPACE_INSTALL_PYTHON=false
  122. WORKSPACE_INSTALL_IMAGE_OPTIMIZERS=false
  123. WORKSPACE_INSTALL_IMAGEMAGICK=false
  124. WORKSPACE_INSTALL_TERRAFORM=false
  125. WORKSPACE_INSTALL_DUSK_DEPS=false
  126. WORKSPACE_INSTALL_PG_CLIENT=false
  127. WORKSPACE_INSTALL_SWOOLE=false
  128. WORKSPACE_PUID=1000
  129. WORKSPACE_PGID=1000
  130. WORKSPACE_CHROME_DRIVER_VERSION=2.32
  131. WORKSPACE_TIMEZONE=UTC
  132. WORKSPACE_SSH_PORT=2222
  133.  
  134. ### PHP_FPM ###############################################
  135.  
  136. PHP_FPM_INSTALL_ZIP_ARCHIVE=true
  137. PHP_FPM_INSTALL_BCMATH=true
  138. PHP_FPM_INSTALL_MYSQLI=true
  139. PHP_FPM_INSTALL_TOKENIZER=true
  140. PHP_FPM_INSTALL_INTL=true
  141. PHP_FPM_INSTALL_IMAGEMAGICK=true
  142. PHP_FPM_INSTALL_OPCACHE=true
  143. PHP_FPM_INSTALL_IMAGE_OPTIMIZERS=true
  144. PHP_FPM_INSTALL_PHPREDIS=true
  145. PHP_FPM_INSTALL_MEMCACHED=false
  146. PHP_FPM_INSTALL_XDEBUG=false
  147. PHP_FPM_INSTALL_IMAP=false
  148. PHP_FPM_INSTALL_MONGO=false
  149. PHP_FPM_INSTALL_AMQP=false
  150. PHP_FPM_INSTALL_MSSQL=false
  151. PHP_FPM_INSTALL_SOAP=false
  152. PHP_FPM_INSTALL_GMP=false
  153. PHP_FPM_INSTALL_EXIF=false
  154. PHP_FPM_INSTALL_AEROSPIKE=false
  155. PHP_FPM_INSTALL_PGSQL=false
  156. PHP_FPM_INSTALL_GHOSTSCRIPT=false
  157. PHP_FPM_INSTALL_LDAP=false
  158. PHP_FPM_INSTALL_SWOOLE=false
  159. PHP_FPM_INSTALL_PG_CLIENT=false
  160. PHP_FPM_INSTALL_PCNTL=false
  161.  
  162. ### PHP_WORKER ############################################
  163.  
  164. PHP_WORKER_INSTALL_PGSQL=false
  165.  
  166. ### NGINX #################################################
  167.  
  168. NGINX_HOST_HTTP_PORT=80
  169. NGINX_HOST_HTTPS_PORT=443
  170. NGINX_HOST_LOG_PATH=./logs/nginx/
  171. NGINX_SITES_PATH=./nginx/sites/
  172. NGINX_PHP_UPSTREAM_CONTAINER=php-fpm
  173. NGINX_PHP_UPSTREAM_PORT=9000
  174.  
  175. ### APACHE ################################################
  176.  
  177. APACHE_HOST_HTTP_PORT=80
  178. APACHE_HOST_HTTPS_PORT=443
  179. APACHE_HOST_LOG_PATH=./logs/apache2
  180. APACHE_SITES_PATH=./apache2/sites
  181. APACHE_PHP_UPSTREAM_CONTAINER=php-fpm
  182. APACHE_PHP_UPSTREAM_PORT=9000
  183. APACHE_PHP_UPSTREAM_TIMEOUT=60
  184. APACHE_DOCUMENT_ROOT=/var/www/
  185.  
  186. ### MYSQL #################################################
  187.  
  188. MYSQL_VERSION=latest
  189. MYSQL_DATABASE=default
  190. MYSQL_USER=default
  191. MYSQL_PASSWORD=secret
  192. MYSQL_PORT=3306
  193. MYSQL_ROOT_PASSWORD=root
  194. MYSQL_ENTRYPOINT_INITDB=./mysql/docker-entrypoint-initdb.d
  195.  
  196. ### REDIS #################################################
  197.  
  198. REDIS_PORT=6379
  199.  
  200. ### Percona ###############################################
  201.  
  202. PERCONA_DATABASE=homestead
  203. PERCONA_USER=homestead
  204. PERCONA_PASSWORD=secret
  205. PERCONA_PORT=3306
  206. PERCONA_ROOT_PASSWORD=root
  207. PERCONA_ENTRYPOINT_INITDB=./percona/docker-entrypoint-initdb.d
  208.  
  209. ### MSSQL #################################################
  210.  
  211. MSSQL_DATABASE=homestead
  212. MSSQL_PASSWORD=yourStrong(!)Password
  213. MSSQL_PORT=1433
  214.  
  215. ### MARIADB ###############################################
  216.  
  217. MARIADB_DATABASE=default
  218. MARIADB_USER=default
  219. MARIADB_PASSWORD=secret
  220. MARIADB_PORT=3306
  221. MARIADB_ROOT_PASSWORD=root
  222. MARIADB_ENTRYPOINT_INITDB=./mariadb/docker-entrypoint-initdb.d
  223.  
  224. ### POSTGRES ##############################################
  225.  
  226. POSTGRES_DB=default
  227. POSTGRES_USER=default
  228. POSTGRES_PASSWORD=secret
  229. POSTGRES_PORT=5432
  230.  
  231. ### RABBITMQ ##############################################
  232.  
  233. RABBITMQ_NODE_HOST_PORT=5672
  234. RABBITMQ_MANAGEMENT_HTTP_HOST_PORT=15672
  235. RABBITMQ_MANAGEMENT_HTTPS_HOST_PORT=15671
  236. RABBITMQ_DEFAULT_USER=guest
  237. RABBITMQ_DEFAULT_PASS=guest
  238.  
  239. ### ELASTICSEARCH #########################################
  240.  
  241. ELASTICSEARCH_HOST_HTTP_PORT=9200
  242. ELASTICSEARCH_HOST_TRANSPORT_PORT=9300
  243.  
  244. ### KIBANA ################################################
  245.  
  246. KIBANA_HTTP_PORT=5601
  247.  
  248. ### MEMCACHED #############################################
  249.  
  250. MEMCACHED_HOST_PORT=11211
  251.  
  252. ### BEANSTALKD CONSOLE ####################################
  253.  
  254. BEANSTALKD_CONSOLE_BUILD_PATH=./beanstalkd-console
  255. BEANSTALKD_CONSOLE_CONTAINER_NAME=beanstalkd-console
  256. BEANSTALKD_CONSOLE_HOST_PORT=2080
  257.  
  258. ### BEANSTALKD ############################################
  259.  
  260. BEANSTALKD_HOST_PORT=11300
  261.  
  262. ### SELENIUM ##############################################
  263.  
  264. SELENIUM_PORT=4444
  265.  
  266. ### MINIO #################################################
  267.  
  268. MINIO_PORT=9000
  269.  
  270. ### ADMINER ###############################################
  271.  
  272. ADM_PORT=8080
  273. ADM_INSTALL_MSSQL=false
  274.  
  275. ### PHP MY ADMIN ##########################################
  276.  
  277. # Accepted values: mariadb - mysql
  278.  
  279. PMA_DB_ENGINE=mysql
  280.  
  281. # Credentials/Port:
  282.  
  283. PMA_USER=default
  284. PMA_PASSWORD=secret
  285. PMA_ROOT_PASSWORD=secret
  286. PMA_PORT=8080
  287.  
  288. ### MAILDEV ###############################################
  289.  
  290. MAILDEV_HTTP_PORT=1080
  291. MAILDEV_SMTP_PORT=25
  292.  
  293. ### VARNISH ###############################################
  294.  
  295. VARNISH_CONFIG=/etc/varnish/default.vcl
  296. VARNISH_PORT=8080
  297. VARNISH_BACKEND_PORT=8888
  298. VARNISHD_PARAMS=-p default_ttl=3600 -p default_grace=3600
  299.  
  300. ### Varnish ###############################################
  301.  
  302. # Proxy 1
  303. VARNISH_PROXY1_CACHE_SIZE=128m
  304. VARNISH_PROXY1_BACKEND_HOST=workspace
  305. VARNISH_PROXY1_SERVER=SERVER1
  306.  
  307. # Proxy 2
  308. VARNISH_PROXY2_CACHE_SIZE=128m
  309. VARNISH_PROXY2_BACKEND_HOST=workspace
  310. VARNISH_PROXY2_SERVER=SERVER2
  311.  
  312. ### HAPROXY ###############################################
  313.  
  314. HAPROXY_HOST_HTTP_PORT=8085
  315.  
  316. ### JENKINS ###############################################
  317.  
  318. JENKINS_HOST_HTTP_PORT=8090
  319. JENKINS_HOST_SLAVE_AGENT_PORT=50000
  320. JENKINS_HOME=./jenkins/jenkins_home
  321.  
  322. ### GRAFANA ###############################################
  323.  
  324. GRAFANA_PORT=3000
  325.  
  326. ### BLACKFIRE #############################################
  327.  
  328. # Create an account on blackfire.io. Don't enable blackfire and xDebug at the same time. # visit https://blackfire.io/docs/24-days/06-installation#install-probe-debian for more info.
  329. INSTALL_BLACKFIRE=false
  330. BLACKFIRE_CLIENT_ID=<client_id>
  331. BLACKFIRE_CLIENT_TOKEN=<client_token>
  332. BLACKFIRE_SERVER_ID=<server_id>
  333. BLACKFIRE_SERVER_TOKEN=<server_token>
  334.  
  335. ### AEROSPIKE #############################################
  336.  
  337. AEROSPIKE_SERVICE_PORT=3000
  338. AEROSPIKE_FABRIC_PORT=3001
  339. AEROSPIKE_HEARTBEAT_PORT=3002
  340. AEROSPIKE_INFO_PORT=3003
  341.  
  342. ## Temp solution, this should be in the dockerfile
  343. # for all versions "https://github.com/aerospike/aerospike-client-php/archive/master.tar.gz"
  344. # for php 7.2 (using this branch until the support for 7.2 on master) "https://github.com/aerospike/aerospike-client-php/archive/7.2.0-release-candidate.tar.gz"
  345. AEROSPIKE_PHP_REPOSITORY=https://github.com/aerospike/aerospike-client-php/archive/7.2.0-release-candidate.tar.gz
  346.  
  347. ### RETHINKDB #############################################
  348.  
  349. RETHINKDB_PORT=8090
  350.  
  351. ### MONGODB ###############################################
  352.  
  353. MONGODB_PORT=27017
  354.  
  355. ### CADDY #################################################
  356.  
  357. CADDY_HOST_HTTP_PORT=80
  358. CADDY_HOST_HTTPS_PORT=443
  359. CADDY_HOST_LOG_PATH=./logs/caddy
  360. CADDY_CUSTOM_CADDYFILE=./caddy/Caddyfile
  361.  
  362. ### LARAVEL ECHO SERVER ###################################
  363.  
  364. LARAVEL_ECHO_SERVER_PORT=6001
  365.  
  366. ### SOLR ##################################################
  367.  
  368. SOLR_VERSION=5.5
  369. SOLR_PORT=8983
  370. SOLR_DATAIMPORTHANDLER_MYSQL=false
Add Comment
Please, Sign In to add comment