Files
nova/ctrl/edge/docker-compose.yml

22 lines
385 B
YAML

services:
nova-api:
image: registry.mcrn.ar/unt/api:latest
container_name: nova-api
restart: unless-stopped
env_file: .env
networks:
- gateway
nova-ui:
image: registry.mcrn.ar/unt/ui:latest
container_name: nova-ui
restart: unless-stopped
depends_on:
- nova-api
networks:
- gateway
networks:
gateway:
external: true