Created
December 29, 2021 16:36
-
-
Save the-toster/76506934cb9e2e858d3fe363d8d9cda1 to your computer and use it in GitHub Desktop.
docker-compose replicas minimum example
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: | |
publisher_app: | |
image: nginx | |
ports: | |
- "8080-8081:80" | |
environment: | |
server.port: 8080 | |
deploy: | |
mode: replicated | |
replicas: 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment