-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcompose.yml
47 lines (46 loc) · 2.2 KB
/
compose.yml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: "2.0"
services:
a7:
build:
context: .
environment:
# Path to the assets root directory path (default: /assets)
- A7_VOLUME_MOUNT_PATH=/assets
# Allow to navigate through the indexed assets (default: true)
# - A7_AUTOINDEX=false
# Apply a CORS <*> rule for API catalog queries (default: true)
# - A7_AUTOINDEX_CORS_ALL=false
# Allow the directories and subdirectories download as a single zip file (default: true)
# - A7_ZIP_DIRECTORIES=false
# Allow for API meta queries (default: true)
# - A7_META_QUERIES=false
# Apply a CORS <*> rule for API meta queries (default: true)
# - A7_META_QUERIES_CORS_ALL=false
# Apply a CORS <*> rule for assets to be accessed from whatever origin (default: true)
# - A7_CORS_ALL=false
# Apply semantic-versioning-aware smart redirects (default: true)
# - A7_PATH_AUTO_EXPAND=false
# Initialize/generate the .directory.txt metadata files in every assets subfolders (default: false) (values: true, false, always)
# - A7_PATH_AUTO_EXPAND_INIT=true
# Resolve and return the resource in case of incomplete version (requires A7_PATH_AUTO_EXPAND=true) (default: false)
# - A7_PATH_AUTO_RESOLVE=true
# Only run scripts; do not start the server (default: false)
# - A7_RUN_SCRIPTS_ONLY=true
# Only respond to HEAD and GET requests (default: true)
# - A7_GET_REQUESTS_ONLY=false
# Activate A7 internal API (note: writing files to disk needs write permissions) (default: true)
# - A7_INTERNAL_API=false
# Set the service title (displayed in the browsing UI)
# - A7_TITLE=Clown
# Set the service icon (displayed in the browsing UI)
# - A7_ICON=🤡
# Set the main brand color (used in the top hero banner) (values: primary, secondary, tertiary, info, warning, danger, grey, grey-dark or any CSS-compatible color code) (default: tertiary)
# - A7_BRAND_COLOR=primary
# Public origin of the exposed service
# - A7_PUBLIC_ORIGIN=https://my.domain.tld
ports:
# ASSET:ASSET ↓
- 45537:45537
volumes:
- ./test/integration/assets:/assets
- ./etc/nginx/edge:/etc/nginx/edge