23 lines
427 B
YAML
23 lines
427 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
vendaweb-api:
|
|
image: 10.1.1.124:8082/library/vendaweb-api:latest
|
|
ports:
|
|
- target: 8066
|
|
published: 8066
|
|
protocol: tcp
|
|
mode: host
|
|
networks:
|
|
- juru-network
|
|
deploy:
|
|
replicas: 1
|
|
update_config:
|
|
order: stop-first
|
|
parallelism: 1
|
|
failure_action: rollback
|
|
delay: 5s
|
|
|
|
networks:
|
|
juru-network:
|
|
external: true |