Skip to content

Commit 41a85e6

Browse files
author
Dirk Hildebrand
committed
chore: expose APP_VERSION to containers and footer. First RC
1 parent d12d52b commit 41a85e6

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

.env.example

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ DB_ROOT_PASS=change_me_root
5858
# =====
5959
# App
6060
# =====
61+
# APP_VERSION:
62+
# Zeigt die aktuelle Versionsnummer in der UI an
63+
APP_VERSION=1.0.0-rc1
64+
6165
# SESSION_NAME:
6266
# Name des Session-Cookies der Anwendung.
6367
# Kann im Normalfall unverändert bleiben. Wenn mehrere Novoboard-

docker-compose.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
db:
3-
image: hildebrandit/novoboard-db:beta1
3+
image: hildebrandit/novoboard-db:latest
44
container_name: novoboard-db
55
restart: unless-stopped
66
env_file:
@@ -37,7 +37,7 @@ services:
3737
max-file: "5"
3838

3939
php:
40-
image: hildebrandit/novoboard:beta1
40+
image: hildebrandit/novoboard:latest
4141
container_name: novoboard-php
4242
restart: unless-stopped
4343
depends_on:
@@ -46,6 +46,8 @@ services:
4646
working_dir: /var/www/html
4747
env_file:
4848
- ./.env
49+
environment:
50+
APP_VERSION: ${APP_VERSION}
4951
networks:
5052
- novoboard-net
5153
logging:
@@ -55,7 +57,7 @@ services:
5557
max-file: "5"
5658

5759
cron:
58-
image: hildebrandit/novoboard-cron:beta1
60+
image: hildebrandit/novoboard-cron:latest
5961
container_name: novoboard-cron
6062
restart: unless-stopped
6163
depends_on:
@@ -66,6 +68,7 @@ services:
6668
- ./.env
6769
environment:
6870
TZ: Europe/Berlin
71+
APP_VERSION: ${APP_VERSION}
6972
networks:
7073
- novoboard-net
7174
logging:
@@ -75,7 +78,7 @@ services:
7578
max-file: "5"
7679

7780
nginx:
78-
image: hildebrandit/novoboard-nginx:beta1
81+
image: hildebrandit/novoboard-nginx:latest
7982
container_name: novoboard-nginx
8083
restart: unless-stopped
8184
depends_on:

0 commit comments

Comments
 (0)