26 lines
577 B
YAML
26 lines
577 B
YAML
version: '3'
|
|
services:
|
|
backend:
|
|
image: establo.estancia-agape.com:5000/establo_x86
|
|
ports:
|
|
- "80:8080"
|
|
restart: always
|
|
volumes:
|
|
- ./backend:/app
|
|
- /faktotum/docker/data/database/local/:/database
|
|
- /faktotum/docker/data/socket:/socket
|
|
working_dir: /app
|
|
command: npm run dev
|
|
env_file:
|
|
- "/faktotum/docker/data/database/local/.env"
|
|
|
|
mqtt:
|
|
image: eclipse-mosquitto
|
|
restart: always
|
|
volumes:
|
|
- /faktotum/docker/data/mosquitto/config:/mosquitto/config/
|
|
ports:
|
|
- "1883:1883"
|
|
- "1884:1884"
|
|
|