Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ajardin/docker-courses
https://github.com/ajardin/docker-courses
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/ajardin/docker-courses
- Owner: ajardin
- License: mit
- Created: 2019-10-05T17:12:18.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-11-18T14:34:55.000Z (almost 3 years ago)
- Last Synced: 2023-03-05T07:19:06.353Z (over 1 year ago)
- Language: PHP
- Homepage:
- Size: 107 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker courses
> This repository explains how Docker Compose works with web application thanks to a Symfony application as an example.
> Docker and Docker Compose are the only requirements to run the project: PHP is not needed.## Installation
```
git clone [email protected]:ajardin/docker-courses.git# Fix remaning "TODO" instructions
docker-compose up --detach
docker-compose exec php sh -c "composer install --optimize-autoloader"# The Symfony application is now accessible from your browser with:
# - 127.0.0.1, if you use Linux or Docker Deskptop on Windows or macOS.
# - 192.168.99.100, if you use Docker Toolbox.
```