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
Docker-symfony gives you everything you need for developing Symfony application. This complete stack run with docker and [docker-compose](https://docs.docker.com/compose/).
7
+
Docker-symfony gives you everything you need for developing Symfony application. This complete stack run with docker and [docker-compose (1.7 or higher)](https://docs.docker.com/compose/).
Simply add this: (then go to [symfony.dev:8080](http://symfony.dev:8080))
149
+
150
+
```
151
+
phpmyadmin:
152
+
image: phpmyadmin/phpmyadmin
153
+
ports:
154
+
- "8080:80"
155
+
links:
156
+
- db
157
+
```
158
+
150
159
* Got this error: `ERROR: Couldn't connect to Docker daemon at http+docker://localunixsocket - is it running?
151
160
If it's at a non-standard location, specify the URL with the DOCKER_HOST environment variable.` ?
152
161
Run `docker-compose up -d` instead.
153
162
154
163
* Permission problem? See [this doc (Setting up Permission)](http://symfony.com/doc/current/book/installation.html#checking-symfony-application-configuration-and-setup)
155
164
156
-
* How I can add PHPMyAdmin?
157
-
Simply add this: (then go to [symfony.dev:8080](http://symfony.dev:8080))
0 commit comments