mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-30 06:12:03 +00:00
- Added docker-compose.override.yml to .gitignore to prevent it from being tracked. - Introduced a new example configuration file for docker-compose.override.yml to guide users in setting up their local development environment.
11 lines
378 B
Plaintext
11 lines
378 B
Plaintext
services:
|
|
server:
|
|
volumes:
|
|
# Mount your workspace directory to /projects inside the container
|
|
- /Users/webdevcody/Workspace/automaker-workspace:/projects:rw
|
|
environment:
|
|
# Set workspace directory so the UI can discover projects
|
|
- WORKSPACE_DIR=/projects
|
|
# Ensure /projects is in allowed directories
|
|
- ALLOWED_PROJECT_DIRS=/projects
|