Files
service/compose.yml
T
2026-02-01 15:58:14 +02:00

36 lines
644 B
YAML

services:
srv:
build:
context: .
target: dev
develop:
watch:
- path: ./
include: "mix.*"
target: "/app"
action: sync+restart
initial_sync: true
volumes:
- "app_build:/app/_build"
- "app_deps:/app_deps"
- "./config:/app/config"
- "./lib:/app/lib"
- "./test:/app/test"
environment:
MQTT_HOST: activemq-artemis
MQTT_USERNAME: "${MQTT_USERNAME}"
MQTT_PASSWORD: "${MQTT_PASSWORD}"
networks:
- default
- nv
networks:
nv:
name: neon-vertigo
external: true
volumes:
app_build:
app_deps: