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
This repo will give you a turn key Docker container build for use in production OR local development. The setup includes an Apache web service, PHP 7.3, PHP Composer, linked [MySQL 5.7.26](https://hub.docker.com/_/mysql) instance and a data container volume.
10
+
This repo will give you a turn key Docker container build for use in **production** OR **dev**. The setup includes an Apache web service, PHP 7.3, PHP Composer, linked [MySQL 5.7.26](https://hub.docker.com/_/mysql) instance and a data container volume.
10
11
11
-
In this repo you will find a number of complete Dockerfile builds used in **development**and**production** environments. Listed below is an explanation of each file. [Ask a question!](https://github.com/htmlgraphic/Apache/issues/new)
12
+
In this repo you will find a number of complete Dockerfile builds used in **dev**or**production** environments. Listed below is an explanation of each file. [Ask a question!](https://github.com/htmlgraphic/Apache/issues/new)
Login using the following creditial stored within the .env file:
75
79
76
80
|username |password |
77
81
|--|--|
78
-
|root | $new_passwordac
79
-
|$MYSQL_PASSWORD |$MYSQL_PASSWORD |
82
+
|root | `$MYSQL_ROOT_PASSWORD`
83
+
|`$MYSQL_PASSWORD`|`$MYSQL_PASSWORD`|
80
84
81
85
82
86
@@ -93,7 +97,7 @@ These continuous integration services will fully test the creation of your conta
93
97
**[Shippable](https://shippable.com)** - Test **production** and **dev** Docker builds, can the container be built the without error? The ```/tests/build_tests.sh``` file ensures the can run with parameters defined. Shippable allows the use of [matrix environment variables](http://docs.shippable.com/ci_configure/#using-environment-variables) reducing build time and offer a more robust tests. If any test(s) fail the system should be reviewed closer.
94
98
95
99
96
-
## Interacting with containers:
100
+
## Interacting with Containers:
97
101
98
102
List all running containers:
99
103
@@ -105,7 +109,7 @@ List all containers (including stopped containers):
105
109
`docker ps -a`
106
110
107
111
108
-
Read the log of a running container:
112
+
Review og of a running container:
109
113
110
114
`docker logs [CONTAINER ID OR NAME]`
111
115
@@ -150,8 +154,12 @@ Stop and start a container in separate operations:
150
154
## Teardown
151
155
#### (Stop all running containers started by Docker Compose):
0 commit comments