14 lines
271 B
YAML
14 lines
271 B
YAML
|
|
version: "3.8"
|
||
|
|
services:
|
||
|
|
omnibot:
|
||
|
|
#image: "elixir:1.10"
|
||
|
|
build: .
|
||
|
|
#environment:
|
||
|
|
#MIX_ENV: prod
|
||
|
|
env_file: docker.env
|
||
|
|
volumes:
|
||
|
|
- ".:/app"
|
||
|
|
working_dir: "/app"
|
||
|
|
restart: always
|
||
|
|
#entrypoint: "mix local.hex --force; mix run --no-halt"
|