Files
Palmr/infra/SCRIPTS.md
Daniel Luiz Alves d1de4c78c5 feat: standardize UID/GID configuration across Docker Compose files
- Added PALMR_UID and PALMR_GID environment variables to all relevant Docker Compose files to ensure consistent user and group ID settings for container processes.
- Updated documentation in quick-start guide to reflect these changes, enhancing clarity for users regarding UID/GID configurations.
2025-06-27 17:34:29 -03:00

37 lines
924 B
Markdown

## 🚀 Quick Start
Palmr. includes a convenient Makefile to simplify development and deployment tasks:
```bash
# Show all available commands
make help
# Build Docker image with multi-platform support
make build
# Start the application
make start
# View application logs
make logs
# Stop the application
make stop
# Clean up containers and images
make clean
# Update apps version
make update-version
```
### Available Commands:
- `make build` - Build Docker image using the build script in `./infra/`
- `make start` - Start the application using docker-compose
- `make stop` - Stop all running containers
- `make logs` - Show application logs
- `make clean` - Clean up containers and images
- `make shell` - Access the application container shell
- `make update-version` - Update all apps version in package.json
All infrastructure scripts are organized in the `./infra/` directory for better project organization.