123456789101112131415161718 |
- build_db:
- cd db && npm run build
- build_bot: build_db
- cd bot && npm run build
- build:
- docker-compose build
- start_db: build
- docker-compose up db adminer
- start: build
- docker-compose up db adminer noctbot
- start_bot: build
- docker-compose up db adminer noctbot
|