mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-03 08:53:36 +00:00
chore: update .gitignore and add docker-compose.override.yml.example
- 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.
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -78,3 +78,5 @@ blob-report/
|
|||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
*.pem
|
*.pem
|
||||||
|
|
||||||
|
docker-compose.override.yml
|
||||||
10
docker-compose.override.yml.example
Normal file
10
docker-compose.override.yml.example
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
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
|
||||||
Reference in New Issue
Block a user