Skip to content

Instantly share code, notes, and snippets.

@simonjcarr
Last active August 18, 2020 10:31
Show Gist options
  • Save simonjcarr/10366bca27baaf85bf265cedeea8f9b2 to your computer and use it in GitHub Desktop.
Save simonjcarr/10366bca27baaf85bf265cedeea8f9b2 to your computer and use it in GitHub Desktop.
version: "3"
services:
websocketserver:
image: microservices_websocket_server:latest
ports:
- 8088:8088
twitterclient:
image: microservices_twitter_client:latest
depends_on:
- websocketserver
environment:
- WEBSOCKET_SERVER_URL=ws://websocketserver:8088
- TWITTER_API_KEY=
- TWITTER_API_SECRET_KEY=
- TWITTER_ACCESS_TOKEN=
- TWITTER_ACCESS_TOKEN_SECRET=
twitterui:
image: microservices_twitter_ui
depends_on:
- websocketserver
ports:
- 8080:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment