Rapid Application Prototyping with Docker Compose
version: "3.8" services: cache_store: image: redis:7-alpine request_tracker: build: ./request_counter ports: - "3000:3000" Starting with Docker 1.10, network overlay functionality enables cross-host service scaling, while inter-service links only worked on single hosts in earlier...