File size: 429 Bytes
52f4d1c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
services:
  aworldserver-1:
      image: aworldserver:main
      volumes:
        - ./.env:/app/.env
      ports:
        - "9299:9099"
      restart: always
  aworldserver-2:
    image: aworldserver:main
    volumes:
      - ./.env:/app/.env
    ports:
      - "9399:9099"
    restart: always
  aworldserver-3:
    image: aworldserver:main
    volumes:
      - ./.env:/app/.env
    ports:
      - "9499:9099"
    restart: always