Files
omnibot/docker-compose.yml
Alek Ratzloff 052bdcaabc Add awareness of mix deps to docker stuff
* 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>
2020-08-18 17:30:21 -07:00

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