change some desgins in the docs site
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Documentations on Laradock Docs</title>
|
||||
<title>Documentations on Laradock</title>
|
||||
<link>http://laradock.io/documentation/index.xml</link>
|
||||
<description>Recent content in Documentations on Laradock Docs</description>
|
||||
<description>Recent content in Documentations on Laradock</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language>
|
||||
<atom:link href="http://laradock.io/documentation/index.xml" rel="self" type="application/rss+xml" />
|
||||
@ -712,6 +712,36 @@ A package (<a href="https://github.com/duxet/laravel-rethinkdb">La
|
||||
<li>set the <code>DB_DATABASE</code> to <code>database</code>.</li>
|
||||
</ul>
|
||||
|
||||
<p><br>
|
||||
<a name="Use-Minio"></a></p>
|
||||
|
||||
<h2 id="use-minio">Use Minio</h2>
|
||||
|
||||
<p>1 - Configure Minio:
|
||||
- On the workspace container, change <code>INSTALL_MC</code> to true to get the client
|
||||
- Set <code>MINIO_ACCESS_KEY</code> and <code>MINIO_ACCESS_SECRET</code> if you wish to set proper keys</p>
|
||||
|
||||
<p>2 - Run the Minio Container (<code>minio</code>) with the <code>docker-compose up</code> command. Example:</p>
|
||||
|
||||
<pre><code class="language-bash">docker-compose up -d minio
|
||||
</code></pre>
|
||||
|
||||
<p>3 - Open your browser and visit the localhost on port <strong>9000</strong> at the following URL: <code>http://localhost:9000</code></p>
|
||||
|
||||
<p>4 - Create a bucket either through the webui or using the mc client:</p>
|
||||
|
||||
<pre><code class="language-bash"> mc mb minio/bucket
|
||||
</code></pre>
|
||||
|
||||
<p>5 - When configuring your other clients use the following details:</p>
|
||||
|
||||
<pre><code> S3_HOST=http://minio
|
||||
S3_KEY=access
|
||||
S3_SECRET=secretkey
|
||||
S3_REGION=us-east-1
|
||||
S3_BUCKET=bucket
|
||||
</code></pre>
|
||||
|
||||
<p><br>
|
||||
<a name="CodeIgniter"></a></p>
|
||||
|
||||
|
Reference in New Issue
Block a user