-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.override.example.yml
More file actions
23 lines (22 loc) · 1016 Bytes
/
docker-compose.override.example.yml
File metadata and controls
23 lines (22 loc) · 1016 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Local overrides — copy to docker-compose.override.yml (auto-loaded by Compose).
#
# Post-init scripts: docker/init.d/*.sh run at container startup before the API.
# Mount the directory read-only so scripts can be added/edited without rebuilding.
#
# Project directories: mount at identical paths so configs/app.json works as-is.
services:
api:
volumes:
- ./docker/init.d:/app/docker/init.d:ro
- /home/you/Projects/my-project:/home/you/Projects/my-project
- /home/you/Projects/another-repo:/home/you/Projects/another-repo
# Uncomment and adjust if an upstream edge proxy / L7 gateway on a
# different host on your LAN needs to forward requests to /ide/ at
# this machine. The default in docker-compose.yml binds loopback-only
# (safe). Use ``!override`` so this list replaces the default instead
# of merging with it.
#
# ide-proxy:
# ports: !override
# - "0.0.0.0:5126:8080" # all interfaces, or:
# - "192.168.1.10:5126:8080" # a specific LAN IP