Skip to content

Commit 643a46e

Browse files
authored
feat: rework installer (#39)
1 parent 5299d4c commit 643a46e

25 files changed

+747
-513
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.env
22
.meta-inf
3+
.edition
34
.version
45
.idea
56
images/

docker-compose.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# SPDX-License-Identifier: MIT
2-
# SPDX-FileCopyrightText: 2022-2023 CYBERTEC PostgreSQL International GmbH <office@cybertec.at>
3-
4-
version: "3"
5-
2+
# SPDX-FileCopyrightText: 2022-2024 CYBERTEC PostgreSQL International GmbH <office@cybertec.at>
63
services:
74
# Single page application served via nginx web server
85
web_gui:
@@ -13,8 +10,8 @@ services:
1310
environment:
1411
- FRONTEND_BASE_URL=${FRONTEND_BASE_URL:-}
1512
volumes:
16-
- ./volumes/web_gui/nginx/htpasswd:/etc/nginx/htpasswd
17-
- ./volumes/web_gui/nginx/certs:/etc/nginx/certs
13+
- ./volumes/web_gui/nginx/htpasswd:/etc/nginx/htpasswd:Z
14+
- ./volumes/web_gui/nginx/certs:/etc/nginx/certs:Z
1815
networks:
1916
- common
2017
ports:
@@ -34,7 +31,7 @@ services:
3431
core_db:
3532
condition: service_healthy
3633
volumes:
37-
- ./volumes/core/config:/app/config
34+
- ./volumes/core/config:/app/config:Z
3835
networks:
3936
- common
4037

0 commit comments

Comments
 (0)