Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iamriajul/agora-token-service-docker

A repository which automates building/publishing agora-token-service docker image to hub.docker.com
https://github.com/iamriajul/agora-token-service-docker

agora agora-rtc agora-rtm agora-sdk agora-token agora-token-server agora-webrtc

Last synced: 29 days ago
JSON representation

A repository which automates building/publishing agora-token-service docker image to hub.docker.com

Awesome Lists containing this project

README

        

# agora-token-service-docker

[![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/iamriajul/agora-token-service) [![Docker Pulls](https://img.shields.io/docker/pulls/iamriajul/agora-token-service.svg?style=for-the-badge&logo=docker&logoColor=white)](https://hub.docker.com/r/iamriajul/agora-token-service) [![Docker Image Version](https://img.shields.io/docker/v/iamriajul/agora-token-service.svg?style=for-the-badge&logo=docker&logoColor=white&label=Docker%20Image%20Version)](https://hub.docker.com/r/iamriajul/agora-token-service) [![GitHub release (with filter)](https://img.shields.io/github/v/release/AgoraIO-Community/agora-token-service?style=for-the-badge&logo=github&label=Agora%20Token%20Service)](https://github.com/AgoraIO-Community/agora-token-service)

Docker Hub Tags: https://hub.docker.com/r/iamriajul/agora-token-service/tags

## Example docker-compose.yml

```yaml
version: '3.7'

services:
agora-token:
image: iamriajul/agora-token-service:latest # or specify a tag like iamriajul/agora-token-service:1.5
ports:
- 8080:8080 # the image exposes port 8080
environment:
- APP_ID=your-app-id
- APP_CERTIFICATE=your-app-certificate
- CORS_ALLOW_ORIGIN=your-allowed-origins
# Note SERVER_PORT, PORT are not supported, as the image exposes port 8080
# Passing these env variables will not work
networks:
- my-network
```