https://github.com/uazgraduatecollege/lamp-web
Docker container definition for the Linux (Ubuntu) - Apache - PHP components of a LAMP stack application
https://github.com/uazgraduatecollege/lamp-web
docker lamp-stack php7 ubuntu university-of-arizona web web-app
Last synced: about 1 month ago
JSON representation
Docker container definition for the Linux (Ubuntu) - Apache - PHP components of a LAMP stack application
- Host: GitHub
- URL: https://github.com/uazgraduatecollege/lamp-web
- Owner: uazgraduatecollege
- License: other
- Created: 2019-03-22T20:48:31.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-02-13T23:38:57.000Z (about 2 years ago)
- Last Synced: 2024-02-14T20:25:25.817Z (about 2 years ago)
- Topics: docker, lamp-stack, php7, ubuntu, university-of-arizona, web, web-app
- Language: Dockerfile
- Size: 56.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# lamp-web
A base environment for uazgradcoll/lamp-web projects.
Multilple PHP version are supported through the following tags:
- `php-7.4`, `latest`
Base OS: Ubuntu 20.04LTS
- `php-8.1`: Uses the default Ubuntu 22.04LTS packages provided by Canonical
Base OS: Ubuntu 22.04LTS
- `php-7.3`: Uses [Ondřej Surý's PPA](https://launchpad.net/~ondrej/+archive/ubuntu/php)
Base OS: Ubuntu 18.04LTS
- `php-7.2`: Uses the default Ubuntu 18.04LTS packages provided by Canonical
Base OS: Ubuntu 18.04LTS
- `php-7.1`: Uses [Ondřej Surý's PPA](https://launchpad.net/~ondrej/+archive/ubuntu/php)
Base OS: Ubuntu 16.04LTS
- `php-7.0`: Uses the default Ubuntu 16.04LTS packages provided by Canonical
Base OS: Ubuntu 16.04LTS
- `amz-php7.4`: Uses the official [Docker Hub image for Amazon Linux](https://hub.docker.com/_/amazonlinux)
Base OS: Amazon Linux 2
More information on the [uazgraduatecollege/lamp-web on Docker Hub](https://cloud.docker.com/u/uazgraduatecollege/repository/docker/uazgraduatecollege/lamp-web).
## Usage
Intended primarily as a base image from which to create other application images. Eg.
```Dockerfile
FROM uazgraduatecollege/lamp-web:latest
# Do something
```
## Build
Building is not necessary in most cases as the images can be accessed directly from Docker Hub, however:
```
$ docker build -t uazgraduatecollege/lamp-web:latest .
```
## License
See [LICENSE.md](LICENSE.md)