20 lines
268 B
YAML
20 lines
268 B
YAML
services:
|
|
nginx:
|
|
build: ./nginx
|
|
ports:
|
|
- "8091:80"
|
|
depends_on:
|
|
- web
|
|
- bot
|
|
|
|
bot:
|
|
build: ./bot
|
|
# ports:
|
|
# - 3123:3123
|
|
environment:
|
|
- FLAG=kalmar{test_flag}
|
|
- PORT=3123
|
|
|
|
include:
|
|
- AperiSolve/compose.yml
|