forked from eclipse-vorto/vorto
-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose-build.yml
43 lines (42 loc) · 1.04 KB
/
docker-compose-build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Copyright (c) 2020 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0
#
# SPDX-License-Identifier: EPL-2.0
#
version: '3'
services:
repository:
depends_on:
- "db"
image: eclipsevorto/vorto-repo
build:
context: .
dockerfile: docker/Repository_Dockerfile
args:
JAR_FILE: repository/repository-server/target/infomodelrepository.jar
http_proxy: $http_proxy
https_proxy: $https_proxy
ports:
- "8080:8080"
env_file:
- docker/vorto-variables.env
networks:
- backend
db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
env_file:
- docker/vorto-variables.env
networks:
- backend
networks:
backend:
driver: bridge