Hi,
When setting up APICast with support for OAuth2 I understand the requirement for Redis to store/cache tokens.
So a more production like docker-compose.yml woul look like:
----------------------------------------
version: '2'
services:
gateway:
container_name: apicast-staging
restart: always
depends_on:
- redis
- oauth
ports:
- "8880:8080"
- "8890:8090"
env_file: .env
network:
- bridge
redis:
image: redis
----------------------------------------
/ Joacim