mirror of
https://github.com/tmdinosaurcenter/kiosk-guestbook.git
synced 2025-04-03 10:51:23 -06:00
- Fixed port variable interpolation to use ${PORT:-8000} for a default value. - Updated volume configuration to use a named volume (guestbook_data) mounted at /data. - Improved YAML formatting for clarity.
16 lines
325 B
YAML
16 lines
325 B
YAML
version: "3.8"
|
|
services:
|
|
guestbook:
|
|
build: .
|
|
container_name: guestbook
|
|
ports:
|
|
- "${PORT:-8000}:8000"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
# Mount a named volume at /data so that the database file (configured in .env) persists
|
|
- /home/steve/kiosk-guestbook:/data
|
|
|
|
volumes:
|
|
guestbook_data:
|