Infra: Container-Name ban-yaro→banyaro, Favicon-Route, Cache-Bust v3
- Makefile + docker-compose.yml: container_name ban-yaro → banyaro - sw.js: Cache-Version auf by-v3 (neue Icons + Health-Assets) - .gitignore: /icons/ (Design-Quell-Dateien) ausschließen
This commit is contained in:
parent
5a0be0e886
commit
96e7a97b52
4 changed files with 7 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -7,3 +7,6 @@ __pycache__/
|
||||||
*.db
|
*.db
|
||||||
*.db-wal
|
*.db-wal
|
||||||
*.db-shm
|
*.db-shm
|
||||||
|
|
||||||
|
# Design-Quell-Dateien (nicht für Server)
|
||||||
|
/icons/
|
||||||
|
|
|
||||||
4
Makefile
4
Makefile
|
|
@ -8,8 +8,8 @@ DS_HOST := ds
|
||||||
DS_IP := 10.47.11.10
|
DS_IP := 10.47.11.10
|
||||||
# Hinweis: NPM braucht 10.47.11.99 als Forward-IP (Macvlan-Shim), nicht .10
|
# Hinweis: NPM braucht 10.47.11.99 als Forward-IP (Macvlan-Shim), nicht .10
|
||||||
DS_SSH_PORT := 22
|
DS_SSH_PORT := 22
|
||||||
DS_PATH := /volume1/docker/ban-yaro
|
DS_PATH := /volume1/docker/banyaro
|
||||||
CONTAINER := ban-yaro # container_name (für docker logs/exec)
|
CONTAINER := banyaro # container_name (für docker logs/exec)
|
||||||
SERVICE := banyaro # service-name in docker-compose.yml (für docker compose restart)
|
SERVICE := banyaro # service-name in docker-compose.yml (für docker compose restart)
|
||||||
GIT_REMOTE := origin
|
GIT_REMOTE := origin
|
||||||
DOCKER := sudo /usr/local/bin/docker
|
DOCKER := sudo /usr/local/bin/docker
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
Offline-Cache + Push Notifications
|
Offline-Cache + Push Notifications
|
||||||
============================================================ */
|
============================================================ */
|
||||||
|
|
||||||
const CACHE_VERSION = 'by-v1';
|
const CACHE_VERSION = 'by-v3';
|
||||||
const CACHE_STATIC = `${CACHE_VERSION}-static`;
|
const CACHE_STATIC = `${CACHE_VERSION}-static`;
|
||||||
|
|
||||||
// Diese Dateien werden beim Install gecacht (App Shell)
|
// Diese Dateien werden beim Install gecacht (App Shell)
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
services:
|
services:
|
||||||
banyaro:
|
banyaro:
|
||||||
build: .
|
build: .
|
||||||
container_name: ban-yaro
|
container_name: banyaro
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "3010:8000" # DS-intern, NPM leitet banyaro.app weiter
|
- "3010:8000" # DS-intern, NPM leitet banyaro.app weiter
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue