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: 3 months 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-09T10:12:34.000Z (3 months ago)
- Last Synced: 2025-04-19T22:58:41.538Z (3 months ago)
- Topics: docker, symfony, zsh
- Language: Lua
- Homepage:
- Size: 105 KB
- Stars: 1
- Watchers: 2
- 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
docker build --push --tag allansimon/docker-devbox-php:8.4 .
```### 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"
```