| version: '3.2' | |
| services: | |
| accounts: | |
| image: garystafford/storefront-accounts:latest | |
| depends_on: | |
| - kafka | |
| - mongo | |
| hostname: accounts | |
| # environment: | |
| # LOGGING_LEVEL_ROOT: DEBUG | |
| networks: | |
| - kafka-net | |
| orders: | |
| image: garystafford/storefront-orders:latest | |
| depends_on: | |
| - kafka | |
| - mongo | |
| - eureka | |
| hostname: orders | |
| # environment: | |
| # LOGGING_LEVEL_ROOT: DEBUG | |
| networks: | |
| - kafka-net | |
| fulfillment: | |
| image: garystafford/storefront-fulfillment:latest | |
| depends_on: | |
| - kafka | |
| - mongo | |
| - eureka | |
| hostname: fulfillment | |
| # environment: | |
| # LOGGING_LEVEL_ROOT: DEBUG | |
| networks: | |
| - kafka-net | |
| networks: | |
| kafka-net: | |
| driver: overlay |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment