summaryrefslogtreecommitdiff
path: root/docker-compose.yaml
blob: a0bb20fe1c00485694a7003624786f67c70e4b17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
version: "3.3"
services:
  nats:
      image: 'nats'
      expose:
        - "4222"
      ports:
        - "8222:8222"
        - "4222:4222"
      hostname: nats-server
  registry:
    restart: always
    image: registry:2
    ports:
      - 5000:5000