All Projects → apache → Apisix Docker

apache / Apisix Docker

Licence: apache-2.0
the docker for Apache APISIX

Projects that are alternatives of or similar to Apisix Docker

Apisix
The Cloud-Native API Gateway
Stars: ✭ 7,920 (+6555.46%)
Mutual labels:  api, microservices, api-gateway, api-management, serverless, cloud-native, reverse-proxy, devops
Kong
🦍 The Cloud-Native API Gateway
Stars: ✭ 30,838 (+25814.29%)
Mutual labels:  microservices, api-gateway, api-management, serverless, cloud-native, reverse-proxy, devops
Gloo
The Feature-rich, Kubernetes-native, Next-Generation API Gateway Built on Envoy
Stars: ✭ 3,219 (+2605.04%)
Mutual labels:  microservices, api-gateway, api-management, serverless, cloud-native
Tyk
Tyk Open Source API Gateway written in Go, supporting REST, GraphQL, TCP and gRPC protocols
Stars: ✭ 6,968 (+5755.46%)
Mutual labels:  api, microservices, api-gateway, api-management, reverse-proxy
Krakend Ce
KrakenD Community Edition. Make your binary of KrakenD API Gateway
Stars: ✭ 245 (+105.88%)
Mutual labels:  microservices, api-gateway, cloud-native, reverse-proxy
Tree Gateway
This is a full featured and free API Gateway
Stars: ✭ 160 (+34.45%)
Mutual labels:  api, microservices, api-gateway, api-management
Fusio
Open source API management platform
Stars: ✭ 946 (+694.96%)
Mutual labels:  api, api-gateway, api-management, serverless
Up
Up focuses on deploying "vanilla" HTTP servers so there's nothing new to learn, just develop with your favorite existing frameworks such as Express, Koa, Django, Golang net/http or others.
Stars: ✭ 8,439 (+6991.6%)
Mutual labels:  api, microservices, api-gateway, serverless
Janus
An API Gateway written in Go
Stars: ✭ 2,249 (+1789.92%)
Mutual labels:  api, microservices, api-gateway, reverse-proxy
Gravitee Gateway
Gravitee.io - API Management - OpenSource API Gateway
Stars: ✭ 1,123 (+843.7%)
Mutual labels:  api, microservices, api-gateway, api-management
Grpcjsontranscoder
A filter which allows a RESTful JSON API client to send requests to .NET web server over HTTP and get proxied to a gRPC service
Stars: ✭ 97 (-18.49%)
Mutual labels:  microservices, api-gateway, cloud-native
Product Apim
Welcome to the WSO2 API Manager source code! For info on working with the WSO2 API Manager repository and contributing code, click the link below.
Stars: ✭ 508 (+326.89%)
Mutual labels:  microservices, api-gateway, api-management
Deep Framework
Full-stack JavaScript Framework for Cloud-Native Web Applications (perfect for Serverless use cases)
Stars: ✭ 533 (+347.9%)
Mutual labels:  microservices, serverless, cloud-native
Swagger Stats
API Observability. Trace API calls and Monitor API performance, health and usage statistics in Node.js Microservices.
Stars: ✭ 559 (+369.75%)
Mutual labels:  api, microservices, devops
Aws Serverless Ecommerce Platform
Serverless Ecommerce Platform is a sample implementation of a serverless backend for an e-commerce website. This sample is not meant to be used as an e-commerce platform as-is, but as an inspiration on how to build event-driven serverless microservices on AWS.
Stars: ✭ 469 (+294.12%)
Mutual labels:  microservices, api-gateway, serverless
Threatmapper
Identify vulnerabilities in running containers, images, hosts and repositories
Stars: ✭ 361 (+203.36%)
Mutual labels:  serverless, cloud-native, devops
Zato
ESB, SOA, REST, APIs and Cloud Integrations in Python
Stars: ✭ 889 (+647.06%)
Mutual labels:  api, microservices, api-gateway
Lambda Api
Lightweight web framework for your serverless applications
Stars: ✭ 929 (+680.67%)
Mutual labels:  api, api-gateway, serverless
Aws Serverless Java Container
A Java wrapper to run Spring, Jersey, Spark, and other apps inside AWS Lambda.
Stars: ✭ 1,054 (+785.71%)
Mutual labels:  api, api-gateway, serverless
Serverless Es Logs
A Serverless plugin to transport logs to ElasticSearch
Stars: ✭ 51 (-57.14%)
Mutual labels:  api, api-gateway, serverless

Docker images are not official ASF releases but provided for convenience. Recommended usage is always to build the source.

How To Build Image

The master branch is for the version of Apache APISIX 2.x. If you need a previous version, please build from the v1.x tag.

Build an image from source

  1. Build from release version:
# Assign Apache release version number to variable `APISIX_VERSION`, for example: 2.4. The latest version can be find at `https://github.com/apache/apisix/releases`

export APISIX_VERSION=2.4
docker build -t apisix:${APISIX_VERSION}-alpine --build-arg APISIX_VERSION=${APISIX_VERSION} -f alpine/Dockerfile alpine
  1. Build from master branch version, which has latest code(ONLY for the developer's convenience):
export APISIX_VERSION=master
docker build -t apisix:${APISIX_VERSION}-alpine --build-arg APISIX_VERSION=${APISIX_VERSION} -f alpine/Dockerfile alpine
  1. Build from local code:
# To copy apisix into image, we need to include it in build context
cd <APISIX-PATH>
docker build -t apisix:alpine-local --build-arg APISIX_PATH=. -f <APISIX-DOCKER-PATH>/alpine-local/Dockerfile alpine
# Might need root privilege if encounter "error checking context: 'can't stat'"

Note: For Chinese, the following command is always recommended. The additional build argument ENABLE_PROXY=true will enable proxy to definitely accelerate the progress.

$ docker build -t apisix:${APISIX_VERSION}-alpine --build-arg APISIX_VERSION=${APISIX_VERSION} --build-arg ENABLE_PROXY=true -f alpine/Dockerfile alpine

Manual deploy apisix via docker

Manual deploy

QuickStart via docker-compose

start all modules with docker-compose

$ cd example
$ docker-compose -p docker-apisix up -d

You can refer to the docker-compose example for more try.

Quick test with all dependencies in one Docker container

  • All in one Docker container for Apache APISIX
$ docker build -t apache/apisix:whole -f ./all-in-one/apisix/Dockerfile .
$ docker run -v `pwd`/all-in-one/apisix/config.yaml:/usr/local/apisix/conf/config.yaml -p 9080:9080 -p 2379:2379 -d apache/apisix:whole
  • All in one Docker container for Apache apisix-dashboard

The latest version of apisix-dashboard is 2.4 and should be used with APISIX 2.3.

$ docker build --build-arg APISIX_VERSION=2.3 --build-arg APISIX_DASHBOARD_VERSION=v2.4 -t apache/apisix-dashboard:whole -f ./all-in-one/apisix-dashboard/Dockerfile .
$ docker run -v `pwd`/all-in-one/apisix/config.yaml:/usr/local/apisix/conf/config.yaml -v `pwd`/all-in-one/apisix-dashboard/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml -p 9080:9080 -p 2379:2379 -p 9000:9000 -d apache/apisix-dashboard:whole

Tips: If there is a port conflict, please modify the host port through docker run -p, e.g.

$ docker run -v `pwd`/all-in-one/apisix/config.yaml:/usr/local/apisix/conf/config.yaml -v `pwd`/all-in-one/apisix-dashboard/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml -p 19080:9080 -p 12379:2379 -p 19000:9000 -d apache/apisix-dashboard:whole
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].