Browse Source

init

master
Robin Thoni 3 years ago
commit
c196da2803
Signed by: Robin THONI <robin@rthoni.com> GPG Key ID: 4E09DEF46B99E61E
3 changed files with 23 additions and 0 deletions
  1. 3
    0
      .env
  2. 1
    0
      .gitignore
  3. 19
    0
      docker-compose.yml

+ 3
- 0
.env View File

@@ -0,0 +1,3 @@
1
+
2
+ALL_TZ=Europe/Paris
3
+ALL_RESTART_POLICY=no

+ 1
- 0
.gitignore View File

@@ -0,0 +1 @@
1
+/data/

+ 19
- 0
docker-compose.yml View File

@@ -0,0 +1,19 @@
1
+version: '2'
2
+
3
+services:
4
+    step-ca:
5
+        image: smallstep/step-ca:0.15.6
6
+        restart: ${ALL_RESTART_POLICY}
7
+        networks:
8
+            main.internal.docker:
9
+                aliases:
10
+                    - step-ca.main.internal.docker
11
+        volumes:
12
+            - ./data/step-ca/home:/home/step
13
+        environment:
14
+            TZ: ${ALL_TZ}
15
+        ports:
16
+            - "127.0.0.1:35241:443"
17
+
18
+networks:
19
+    main.internal.docker:

Loading…
Cancel
Save