This repository was archived by the owner on Oct 21, 2024. It is now read-only.
File tree 4 files changed +29
-4
lines changed
4 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 1
- workspace /
1
+ workspace /
2
+ .idea /
Original file line number Diff line number Diff line change 1
1
# Pull base image.
2
- FROM jlesage/baseimage-gui:alpine-3.15 -glibc-v3 AS base
2
+ FROM jlesage/baseimage-gui:alpine-3.12 -glibc-v3 AS base
3
3
4
4
# System config
5
5
RUN apk --no-cache add ca-certificates wget curl && update-ca-certificates && \
Original file line number Diff line number Diff line change @@ -7,7 +7,14 @@ An open source tool to calculate the overall performance of an investment portfo
7
7
## Prerequisite
8
8
* ` docker ` is installed, up and running
9
9
10
- ## Build
10
+ ## Docker Compose:
11
+ ``` bash
12
+ $ git clone < REPO>
13
+ $ cd < REPO-PATH>
14
+ $ docker compose up -d
15
+ ```
16
+
17
+ ## Or build manually
11
18
``` bash
12
19
# Change to repo folder
13
20
$ cd < REPO-PATH>
@@ -19,7 +26,7 @@ $ docker build -t portfolio:local .
19
26
$ docker build --build-arg VERSION=" 0.46.6" --build-arg LOCALE=" de_DE" -t portfolio:local .
20
27
```
21
28
22
- ## Run
29
+ ## And run manually
23
30
``` bash
24
31
$ docker run -d --name portfolio \
25
32
-v ${PWD} /workspace:/opt/portfolio/workspace \
Original file line number Diff line number Diff line change
1
+ services :
2
+ portfolio :
3
+ build :
4
+ context : .
5
+ args :
6
+ LOCALE : de_DE
7
+ container_name : portfolio
8
+ restart : unless-stopped
9
+ ports :
10
+ - 5800:5800
11
+ volumes :
12
+ - ./workspace:/opt/portfolio/workspace
13
+ environment :
14
+ KEEP_APP_RUNNING : 1
15
+ USER_ID : 0
16
+ GROUP_ID : 0
17
+ TZ : Europe/Berlin
You can’t perform that action at this time.
0 commit comments