Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 582 Bytes

Docker-Setup.md

File metadata and controls

26 lines (21 loc) · 582 Bytes

Docker Swarm File

version: "3"

services:
  redis:
    image: docker.dragonflydb.io/dragonflydb/dragonfly
    deploy:
      mode: global
    ports:
      - "6379:6379"

  newsletter:
    image: ghcr.io/kunalsin9h/newsletter:latest
    deploy:
      mode: replicated
      replicas: 1
    ports:
      - "5000:5000"
    volumes:
      - ./production.yaml:/newsletter/configuration/production.yaml

The production.yaml is same as the local.yaml file, but with real productions values.