16 lines
338 B
YAML
16 lines
338 B
YAML
version: '3'
|
|
|
|
services:
|
|
player_a:
|
|
image: ebot
|
|
volumes:
|
|
- /app/player
|
|
- ./player_a/config.json:/app/player/config.json
|
|
restart: always
|
|
player2:
|
|
image: ebot
|
|
volumes:
|
|
- /app/player
|
|
- ./player2/config.json:/app/player/config.json
|
|
restart: always
|