Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allan-simon/docker-devbox-php
Dockerfile provisionned by ansible, to develop PHP7 / PHP8 project
https://github.com/allan-simon/docker-devbox-php
docker symfony zsh
Last synced: 29 days ago
JSON representation
Dockerfile provisionned by ansible, to develop PHP7 / PHP8 project
- Host: GitHub
- URL: https://github.com/allan-simon/docker-devbox-php
- Owner: allan-simon
- Created: 2015-12-10T22:05:55.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-05-20T08:07:05.000Z (6 months ago)
- Last Synced: 2024-10-07T23:11:36.450Z (about 1 month ago)
- Topics: docker, symfony, zsh
- Language: Vim Script
- Homepage:
- Size: 92.8 KB
- Stars: 1
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: change_user_uid.sh
Awesome Lists containing this project
README
## Devbox for Symfony and PHP8 projects using docker
### What you will get at the end
* a Docker container in which you can SSH in
* PHP8.1 installed, with `composer` and `symfony` (PHP7 is on older tag)
* (optional) Neovim: same as vim but better, with php autocompletion
* (optional) Zsh: with my zshrc (that you can replace by yours### Requirements
* Docker
* Docker [buildx](https://github.com/docker/buildx)### Creation
```bash
./create_docker.sh
```### Usage
### Extensive list of stuff installed
TODO
#### ZSH
##### aliases
```
alias gs="git status"
alias gm="git checkout master"
alias gp="git pull origin"
alias ga="git commit --amend"
```