We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a74627 commit 58d778bCopy full SHA for 58d778b
README.md
@@ -10,6 +10,34 @@
10
# SYNOPSIS 📖
11
**What can I do with this?** This image will run a web GUI for your [11notes/kms](https://hub.docker.com/r/11notes/kms) server.
12
13
+# COMPOSE ✂️
14
+```yaml
15
+name: "kms"
16
+services:
17
+ kms:
18
+ image: "11notes/kms:latest"
19
+ container_name: "kms"
20
+ environment:
21
+ TZ: Europe/Zurich
22
+ volumes:
23
+ - "var:/kms/var"
24
+ ports:
25
+ - "1688:1688/tcp"
26
+ restart: always
27
+ kms-gui:
28
+ image: "11notes/kms-gui:646f476"
29
+ container_name: "kms-gui"
30
31
32
33
34
35
+ - "8080:8080/tcp"
36
37
+volumes:
38
+ var:
39
+```
40
+
41
# ENVIRONMENT 📝
42
| Parameter | Value | Default |
43
| --- | --- | --- |
0 commit comments