Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 377 Bytes

docker-compose-replicas.md

File metadata and controls

23 lines (20 loc) · 377 Bytes

Mehrere Instanzen (replicas in docker-compose)

Beispiel

version: "3.9"
services:
  redis:
    image: redis:latest
    deploy:
      replicas: 1
    configs:
      - my_config
      - my_other_config
configs:
  my_config:
    file: ./my_config.txt
  my_other_config:
    external: true

Ref: