группа микросервисов, для автоматизации деятельности отдела технологического сопровождения обучения
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
500 B

1 month ago
version: "3.7"
services:
source:
container_name: source
hostname: source
build:
context: ../source
dockerfile: dockerfile
image: "source"
command: ["java","-jar","/app/source/source-0.1.jar"]
volumes:
- teh-logs:${LOGGER_DATA}
ports:
- 81:8181
restart: unless-stopped
networks:
- teh-net
volumes:
teh-logs:
external: true
networks:
teh-net:
name: teh-net
external: true
driver: bridge