* Dockerfile now runs mix deps.get before running mix run * Ignore /app/deps in docker-compose.yml so filesystems are not shared Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
13 lines
216 B
YAML
13 lines
216 B
YAML
version: "3.8"
|
|
services:
|
|
omnibot:
|
|
build: .
|
|
env_file: docker.env
|
|
volumes:
|
|
- ".:/app"
|
|
# ignore build data
|
|
- "/app/_build"
|
|
- "/app/deps"
|
|
working_dir: "/app"
|
|
restart: always
|