You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DOCUMENTATION/content/documentation/index.md
+24Lines changed: 24 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -922,6 +922,26 @@ docker-compose up -d minio
922
922
```
923
923
924
924
925
+
926
+
<br>
927
+
<aname="Use-AWS"></a>
928
+
## Use AWS
929
+
930
+
1 - Configure AWS:
931
+
- make sure to add your SSH keys in aws/ssh_keys folder
932
+
933
+
2 - Run the Aws Container (`aws`) with the `docker-compose up` command. Example:
934
+
935
+
```bash
936
+
docker-compose up -d aws
937
+
```
938
+
939
+
3 - Access the aws container with `docker-compose exec aws bash`
940
+
941
+
4 - To start using eb cli inside the container, initiaze your project first by doing 'eb init'. Read the [aws eb cli](http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/eb-cli3-configuration.html) docs for more details.
942
+
943
+
944
+
925
945
<br>
926
946
<aname="CodeIgniter"></a>
927
947
@@ -1660,3 +1680,7 @@ This error sometimes happens because your Laravel application isn't running on t
1660
1680
2. Change the `DB_HOST` variable on env with the IP that you received from previous step.
1661
1681
* Option B
1662
1682
1. Change the `DB_HOST` value to the same name as the MySQL docker container. The Laradock docker-compose file currently has this as `mysql`
1683
+
1684
+
## I get stuck when building ngxinx on `fetch http://mirrors.aliyun.com/alpine/v3.5/main/x86_64/APKINDEX.tar.gz`
1685
+
1686
+
As stated on [#749](https://github.com/laradock/laradock/issues/749#issuecomment-293296687), removing the line `RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/' /etc/apk/repositories` from `nginx/Dockerfile` solves the problem.
0 commit comments