-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (28 loc) · 1.13 KB
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (28 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
webatm:
image: ghcr.io/amvlab/webatm:latest
container_name: webatm-local
restart: unless-stopped
environment:
- BLUESKY_SERVER_HOST=host.docker.internal
ports:
- 8082:8082
# Mount your BlueSky working directory to enable the in-app file manager
# (scenario/, plugins/, settings.cfg, output/). Configure the same target
# path in WebATM's UI under Settings → BlueSky base path.
# volumes:
# - /path/to/your/bluesky:/bluesky
# Integrated variant: bundles BlueSky inside the container
# Uncomment to use instead of (or alongside, on a different host port) the
# standalone webatm service above.
# webatm-integrated:
# image: ghcr.io/amvlab/webatm-integrated:latest
# container_name: webatm-integrated-local
# restart: unless-stopped
# ports:
# - 8082:8082
# # Optional: persist BlueSky's config directory (settings.cfg, scenario/,
# # plugins/, output/) across container restarts. The WebATM file manager is
# # pre-wired to that path, no UI configuration needed.
# # volumes:
# # - /path/to/your/bluesky-config:/home/webatm/bluesky