Compare commits

..

No commits in common. "ec74632c02efbda071593db9c47ccfc63c259b1a" and "4c12a5927e42bb997b9a9d12d81b005dd1a7fbbc" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View File

@ -1,6 +1,8 @@
kind: pipeline kind: pipeline
type: exec type: exec
name: default name: default
platform: platform:
os: linux os: linux
arch: amd64 arch: amd64
@ -8,12 +10,8 @@ platform:
steps: steps:
- name: build - name: build
commands: commands:
- docker-compose -p Crisp_Telegram_bot build - docker build .
- name: run - name: run
commands: commands:
- docker-compose -p Crisp_Telegram_bot up -d - docker-compose up --build -d
when:
status:
- success

View File

@ -1,6 +1,6 @@
version: '3' version: '3'
services: services:
bot: crispbot:
build: . build: .
volumes: volumes:
- /root/config.yml:/app/config.yml - /root/config.yml:/app/config.yml