https://github.com/peter279k/docker_couchdb_ext
The Docker image build environment for PHP couchdb_ext
https://github.com/peter279k/docker_couchdb_ext
couchdb extension php72 php73 php74
Last synced: about 1 month ago
JSON representation
The Docker image build environment for PHP couchdb_ext
- Host: GitHub
- URL: https://github.com/peter279k/docker_couchdb_ext
- Owner: peter279k
- Created: 2020-03-29T15:44:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-27T05:50:09.000Z (about 5 years ago)
- Last Synced: 2025-01-19T18:48:35.160Z (about 1 year ago)
- Topics: couchdb, extension, php72, php73, php74
- Size: 7.81 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker_couchdb_ext

## Introduction
This is the Docker image build environment for PHP with [couchdb_ext repository](https://github.com/ace411/couchdb_ext).
## Usage
The Docker image has been published on Docker hub.
These Docker image registries are as follows:
- [docker_couchdb_ext72](https://hub.docker.com/r/peter279k/docker_couchdb_ext72)
- [docker_couchdb_ext73](https://hub.docker.com/r/peter279k/docker_couchdb_ext73)
- [docker_couchdb_ext74](https://hub.docker.com/r/peter279k/docker_couchdb_ext74)
It can use following command to download Docker image.
```BASH
# Download couchDB extension with PHP 7.2
docker pull peter279k/docker_couchdb_ext72:latest
# Download couchDB extension with PHP 7.3
docker pull peter279k/docker_couchdb_ext73:latest
# Download couchDB extension with PHP 7.4
docker pull peter279k/docker_couchdb_ext74:latest
```
## Docker image build
Of course, it also allows to let developers build Docker image manually:
```BASH
# Build couchDB extension with PHP 7.2
docker build -f Dockerfile72 -t docker_couchdb_ext72 .
# Build couchDB extension with PHP 7.3
docker build -f Dockerfile73 -t docker_couchdb_ext73 .
# Build couchDB extension with PHP 7.4
docker build -f Dockerfile73 -t docker_couchdb_ext74 .
```