12 lines
196 B
YAML
12 lines
196 B
YAML
version: "3.8"
|
|
services:
|
|
omnibot:
|
|
build: .
|
|
env_file: docker.env
|
|
volumes:
|
|
- ".:/app"
|
|
# ignore build data
|
|
- "/app/_build"
|
|
working_dir: "/app"
|
|
restart: always
|