This repository has been archived on 2024-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/docs/Docker.md
Nick Yeoman 71a3a72c05 Documentation update mostly
* readme added requriements
* script added mailer (unfinished)
* man docker
* man security
* added man easyadmin
2022-12-17 14:29:39 -08:00

17 lines
359 B
Markdown

# Docker Docs
You should be able to manually configure the docker compose file base on your requirements.
## 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 .
```