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: 4 months ago
JSON representation
A repository which automates building/publishing agora-token-service docker image to hub.docker.com
- Host: GitHub
- URL: https://github.com/iamriajul/agora-token-service-docker
- Owner: iamriajul
- Created: 2023-08-17T08:32:14.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-20T09:38:26.000Z (about 1 year ago)
- Last Synced: 2025-01-24T05:11:24.450Z (6 months ago)
- Topics: agora, agora-rtc, agora-rtm, agora-sdk, agora-token, agora-token-server, agora-webrtc
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/iamriajul/agora-token-service
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# agora-token-service-docker
[](https://hub.docker.com/r/iamriajul/agora-token-service) [](https://hub.docker.com/r/iamriajul/agora-token-service) [](https://hub.docker.com/r/iamriajul/agora-token-service) [](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
```