20f734d54a
- Update app name across all files (manifest, index.html, README, docs) - Update contact email to evershelfproject@gmail.com - Rename Docker service/container/volume to evershelf - Rename localStorage keys: dispensa_* → evershelf_* - Rename SQLite DB reference: dispensa.db → evershelf.db - Update SSH remote to dadaloop82/EverShelf - Update Apache conf file name to evershelf.conf - Update CI workflow Docker image/container names - Update cron job example path - Add data/dispensa.db to .gitignore to prevent accidental commit
19 lines
387 B
YAML
19 lines
387 B
YAML
services:
|
|
evershelf:
|
|
build: .
|
|
container_name: evershelf
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
# Persist database and runtime data
|
|
- evershelf_data:/var/www/html/data
|
|
# Mount your local .env configuration
|
|
- ./.env:/var/www/html/.env:ro
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Rome
|
|
|
|
volumes:
|
|
evershelf_data:
|
|
driver: local
|