16 lines
328 B
Markdown
16 lines
328 B
Markdown
# Docker Docs
|
|
|
|
You should be able to manually parse the docker compose file.
|
|
|
|
## console
|
|
How to run with docker:
|
|
```bash
|
|
sudo docker-compose run php bin/console doctrine:migrations:migrate
|
|
```
|
|
where php is the name of the container in the docker-compose file.
|
|
|
|
## Build php container
|
|
|
|
```
|
|
docker build -t vendor/php:latest .
|
|
``` |