Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kerwanp/docker-sf-ng
Development environment for Angular & Symfony with Docker Compose
https://github.com/kerwanp/docker-sf-ng
angular angular6 database docker dockercompose mariadb nginx php-fpm phpmyadmin symfony symfony4 xdebug
Last synced: 5 days ago
JSON representation
Development environment for Angular & Symfony with Docker Compose
- Host: GitHub
- URL: https://github.com/kerwanp/docker-sf-ng
- Owner: kerwanp
- Created: 2018-07-24T20:19:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-24T20:41:20.000Z (over 6 years ago)
- Last Synced: 2024-10-12T12:23:52.128Z (about 1 month ago)
- Topics: angular, angular6, database, docker, dockercompose, mariadb, nginx, php-fpm, phpmyadmin, symfony, symfony4, xdebug
- Language: TypeScript
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Compose Angular & Symfony
This repository is an example of a development local environment for Angular & Symfony.For this example the API and the Client are directly in the repository but usually I add them as submodules.
# API
http://localhost:81/
* Image: PHP 7.2 FPM
* Framework : Symfony 4.1
* More: XDebug (ip: 127.0.0.1, port: 9000)# Client
http://localhost/
* Image: Node 10
* Framework: Angular 6# Database
mysql://user:password@database:3307/database
* Image: MariaDB 10.3# PhpMyAdmin
http://localhost:82/
* Image: PhpMyAdmin 4.7# Make Commands
To make life easier I created a Makefile for running docker cmds faster.
```bash
$ make api-restart
$ make api-bash
```
```bash
$ make client-restart
$ make client-bash
```