22 lines
400 B
YAML
22 lines
400 B
YAML
version: "3.4"
|
|
|
|
|
|
services:
|
|
|
|
frontend:
|
|
image: mathwave/sprint-repo:battleship-front
|
|
networks:
|
|
- battleship-net
|
|
environment:
|
|
HOST_URL: "http://battleship.develop.sprinthub.ru/"
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
networks:
|
|
battleship-net:
|
|
driver: overlay |