Last active
August 18, 2020 10:31
-
-
Save simonjcarr/10366bca27baaf85bf265cedeea8f9b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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