initial commit

This commit is contained in:
knoflook 2021-11-01 16:36:11 +01:00
commit 7452cf8a12
Signed by: knoflook
GPG Key ID: D6A1D0E8FC4FEF1C
2 changed files with 19 additions and 0 deletions

3
.env.sample Normal file
View File

@ -0,0 +1,3 @@
TYPE=croc
SECRET_CROC_PASS_VERSION=v1

16
compose.yml Normal file
View File

@ -0,0 +1,16 @@
version: '3.8'
services:
app:
image: schollz/croc
ports:
- 9009-9013:9009-9013
environment:
- CROC_PASS_FILE=/run/secrets/croc_pass
secrets:
- croc_pass
secrets:
croc_pass:
name: ${STACK_NAME}_croc_pass_${SECRET_CROC_PASS_VERSION}
external: true