Skip to content

Commit 016a7f3

Browse files
litvinovgchenejac
authored andcommitted
Created installer settings for docker build, updated README.
1 parent 255ab8d commit 016a7f3

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Build and start VIVO.
7373

7474
1. In VIVO (with Vitro cloned alongside it), run:
7575
```
76-
mvn clean package -s installer/example-settings.xml
76+
mvn clean package -s installer/docker-example-settings.xml
7777
docker-compose up
7878
```
7979

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
4+
5+
<profiles>
6+
<profile>
7+
<id>defaults</id>
8+
<properties>
9+
<app-name>vivo</app-name>
10+
<vivo-dir>/usr/local/vivo/home</vivo-dir>
11+
<default-theme>wilma</default-theme>
12+
</properties>
13+
</profile>
14+
</profiles>
15+
16+
<activeProfiles>
17+
<activeProfile>defaults</activeProfile>
18+
</activeProfiles>
19+
</settings>

0 commit comments

Comments
 (0)