chore: remove dev Dockerfile and add example docker-compose

This commit is contained in:
2025-04-04 14:19:13 -06:00
parent ff175edcf6
commit dfb350f8a8
3 changed files with 16 additions and 14 deletions
+15
View File
@@ -0,0 +1,15 @@
version: "3.8"
services:
guestbook:
image: snachodog/kiosk-guestbook:latest
container_name: guestbook
ports:
- "${PORT:-8000}:8000"
env_file:
- .env
volumes:
# Mount your local directory to persist data; adjust if you prefer a named volume
- /path/to/guestbook_data:/data
volumes:
guestbook_data: