We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d136114 commit 4013253Copy full SHA for 4013253
Dockerfile
Dockerfile.release
@@ -1,3 +1,3 @@
1
-FROM scratch
+FROM docker/compose
2
COPY wadsworth /bin/wadsworth
3
ENTRYPOINT ["wadsworth"]
docker-compose.yml
@@ -0,0 +1,13 @@
+version: 3
+services:
+ image: southclaws/wadsworth:v1
4
+ environment:
5
+ HOSTNAME: ${HOSTNAME}
6
+ DEBUG: "1"
7
+ DIRECTORY: "/cache"
8
+ CHECK_INTERVAL: "10s"
9
+ VAULT_ADDR: "https://vault.my.infra.systems"
10
+ VAULT_TOKEN: ${VAULT_TOKEN}
11
+ VAULT_PATH: "a/subdirectory/inside/vault/"
12
+ volumes:
13
+ - /var/run/docker.sock:/var/run/docker.sock
0 commit comments