All checks were successful
ci/woodpecker/push/build Pipeline was successful
22 lines
375 B
YAML
22 lines
375 B
YAML
services:
|
|
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:
|
|
- api
|
|
networks:
|
|
- gateway
|
|
|
|
networks:
|
|
gateway:
|
|
external: true
|