21 lines
436 B
YAML
21 lines
436 B
YAML
services:
|
|
garfbot:
|
|
image: git.crate.zip/crate/garfbot:latest
|
|
container_name: garfbot
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: always
|
|
volumes:
|
|
- ../garfbot:/usr/src/app
|
|
|
|
jonbot:
|
|
image: git.crate.zip/crate/jonbot:latest
|
|
container_name: jonbot
|
|
build:
|
|
context: ./jonbot
|
|
dockerfile: Dockerfile
|
|
restart: always
|
|
volumes:
|
|
- ../garfbot/jonbot:/usr/src/app
|