20 lines
433 B
YAML
20 lines
433 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
medinfo-web:
|
|
image: registry.medinfocloud.com/medinfo-web:prod
|
|
container_name: medinfo-web
|
|
restart: unless-stopped
|
|
networks:
|
|
- proxy_network
|
|
ports:
|
|
- "4300:80" # solo para test local si no tenés NGINX externo configurado aún
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|
|
|
|
networks:
|
|
proxy_network:
|
|
external: true |