-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
36 lines (34 loc) · 819 Bytes
/
compose.yml
File metadata and controls
36 lines (34 loc) · 819 Bytes
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
name: deno-asn-generator
services:
asn-generator:
image: ghcr.io/wuespace/deno-asn-generator
build:
context: .
dockerfile: Dockerfile
ports:
- "127.0.0.1:8080:${PORT:-8080}"
volumes:
- asn-generator-data:/app/data
environment:
- PORT=${PORT:-8080}
- ASN_PREFIX
- ASN_NAMESPACE_RANGE
- ASN_ENABLE_NAMESPACE_EXTENSION
- ADDITIONAL_MANAGED_NAMESPACES
- ASN_LOOKUP_URL
- ASN_LOOKUP_INCLUDE_PREFIX
- ASN_BARCODE_TYPE
- DATA_DIR
- DB_FILE_NAME
- DENO_KV_ACCESS_TOKEN
- OIDC_ISSUER
- OIDC_AUTH_SECRET
- OIDC_CLIENT_ID
- OIDC_CLIENT_SECRET
- OIDC_REDIRECT_URI
- OIDC_SCOPES
- OIDC_UID_CLAIM
- OIDC_NAME_CLAIM
- OIDC_ROLES_CLAIM
volumes:
asn-generator-data: