Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e5718ff
docker-compose with postgreSQL
mazzy-ax Oct 7, 2019
e088eb4
add maven libraries to .gitignore
mazzy-ax Oct 22, 2019
8caf82d
add common docker-compose with postgreSQL and pgadmin4
mazzy-ax Oct 22, 2019
6cb2b0f
set version to lsFusion 2.1 for all modules
mazzy-ax Oct 22, 2019
46fba92
add lsFusion server configurations
mazzy-ax Oct 23, 2019
c762288
add README.md
mazzy-ax Oct 23, 2019
8212294
Update README.md
mazzy-ax Oct 23, 2019
86050cc
Update README.md
mazzy-ax Oct 23, 2019
7d698f2
Update README.md
mazzy-ax Oct 23, 2019
c184cae
fix hostname cause project name was changed
mazzy-ax Oct 23, 2019
a0d9966
Merge remote-tracking branch 'origin/master'
mazzy-ax Oct 23, 2019
e168b1c
fix hostname cause project name was changed
mazzy-ax Oct 24, 2019
c23f09a
Add Dockerfile for lsFusion-client, postgreSQL, pgadmin. Fix docker-c…
mazzy-ax Oct 24, 2019
e419f9b
fix README.md
mazzy-ax Oct 24, 2019
0404909
fix README.md
mazzy-ax Oct 24, 2019
35d1b2e
Update docker-compose.yml
mazzy-ax Oct 24, 2019
45fb0e8
Update README.md
mazzy-ax Oct 24, 2019
f3cee95
Update README.md
mazzy-ax Oct 24, 2019
c7d16b6
Update README.md
mazzy-ax Oct 24, 2019
243f250
Update README.md
mazzy-ax Oct 24, 2019
720b13a
Update README.md
mazzy-ax Oct 24, 2019
c16ea1c
update README.md
mazzy-ax Oct 25, 2019
7a043f1
update README.md
mazzy-ax Oct 25, 2019
2a63ea3
update README.md
mazzy-ax Oct 25, 2019
97cf36a
Update README.md
mazzy-ax Oct 25, 2019
951427d
Update README.md
mazzy-ax Oct 27, 2019
4b03765
Update README.md
mazzy-ax Oct 27, 2019
fd15708
Update README.md
mazzy-ax Oct 27, 2019
2cec8f5
Update README.md
mazzy-ax Oct 27, 2019
eebded4
Update README.md
mazzy-ax Oct 27, 2019
3758107
fix dbhost in the project folder
mazzy-ax Oct 27, 2019
b5ffb11
Merge branch 'master' of https://github.com/lsfusion/samples
mazzy-ax Oct 27, 2019
842e6b6
change lsfusion version to 2.2
mazzy-ax Dec 10, 2019
c6379ec
Merge branch 'pull/1'
mazzy-ax Dec 10, 2019
dfea03b
lsFusion version 2.3
mazzy-ax Jan 23, 2020
55d3a47
docker-compose version 1.25.3
mazzy-ax Jan 23, 2020
7dbb1b9
lsFusion 3.0
mazzy-ax Feb 2, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .docker/lsfusion-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
FROM openjdk:8

ENV JAVA_OPTS="-XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap"

RUN set -eux; \
# enable https repository
apt-get update; \
apt-get install -y --no-install-recommends \
apt-transport-https \
ca-certificates \
; \
# install lsfusion client from the private repository
wget --quiet -O - https://download.lsfusion.org/apt/GPG-KEY-lsfusion | apt-key add -; \
echo deb https://download.lsfusion.org/apt all main > /etc/apt/sources.list.d/lsfusion.list; \
apt-get update; \
apt-get install -y --no-install-recommends \
lsfusion3-client \
; \
# cleanup
rm -rf /var/lib/apt/lists/*;

EXPOSE 8080

CMD /usr/share/lsfusion3-client/bin/catalina.sh run
3 changes: 3 additions & 0 deletions .docker/pgadmin4/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM dpage/pgadmin4

COPY ./servers.json /pgadmin4/servers.json
14 changes: 14 additions & 0 deletions .docker/pgadmin4/servers.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"Servers": {
"1": {
"Comment": "Predefined postgreSQL server for pgadmin4",
"Name": "lsFusion Samples",
"Group": "Servers",
"Port": 5432,
"Username": "postgres",
"Host": "dbhost",
"SSLMode": "prefer",
"MaintenanceDB": "postgres"
}
}
}
3 changes: 3 additions & 0 deletions .docker/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
FROM postgres

HEALTHCHECK CMD pg_isready -U postgres
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.iml

/.idea/libraries/
/*/logs/
/*/target/
15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__betgame.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__documentation.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__euroleague.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__features.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__hockeystats.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__mm.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions .idea/runConfigurations/lsFusion_server__tryonline.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading