Add sandbox Docker compose stack, project structure, and user manual

This commit is contained in:
Robert Perez
2026-07-10 23:57:50 +00:00
parent 292d0afbb7
commit c0acf1e227
4 changed files with 219 additions and 0 deletions
+70
View File
@@ -0,0 +1,70 @@
version: "3.8"
services:
postgres:
image: postgres:16-alpine
container_name: petmaster-postgres
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: petmaster_dev
ports:
- "5432:5432"
volumes:
- postgres-data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres"]
interval: 10s
timeout: 5s
retries: 5
redis:
image: redis:7-alpine
container_name: petmaster-redis
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- redis-data:/data
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 10s
timeout: 5s
retries: 5
node-dev:
image: node:22-alpine
container_name: petmaster-node-dev
restart: unless-stopped
working_dir: /app
ports:
- "9229:9229"
volumes:
- ./node-data:/tmp/node-tmp
command: sh -c "while true; do sleep 3600; done"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
react-frontend:
image: node:22-alpine
container_name: petmaster-react-frontend
restart: unless-stopped
working_dir: /app
ports:
- "3000:3000"
volumes:
- ./node-data:/tmp/node-tmp
command: sh -c "while true; do sleep 3600; done"
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
volumes:
postgres-data:
redis-data: