aboutsummaryrefslogtreecommitdiff
path: root/ci/container/docker-compose.yaml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-14 21:52:03 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-14 21:52:03 -0400
commit1b7270b40b65ef089bf40a14065227f742b8507e (patch)
treeafc119861fcbdd097fcb138f4e682fa8df545cb0 /ci/container/docker-compose.yaml
parent2deda50a167286bc93fd3871a1fd6dbf9f43c81f (diff)
chore: make container slightly easier to setup
Diffstat (limited to 'ci/container/docker-compose.yaml')
-rw-r--r--ci/container/docker-compose.yaml11
1 files changed, 6 insertions, 5 deletions
diff --git a/ci/container/docker-compose.yaml b/ci/container/docker-compose.yaml
index 465615d..63de647 100644
--- a/ci/container/docker-compose.yaml
+++ b/ci/container/docker-compose.yaml
@@ -11,7 +11,9 @@ services:
volumes:
- ./data:/app/data
- ./assets:/app/usr/assets:ro
- - ./ssl:/app/ssl:ro
+ #uncomment to use your own ssl certs, otherwise a build-time cert will be used
+ #- ./ssl/cert.pem:/app/ssl/cert.pem:ro
+ #- ./ssl/key.pem:/app/ssl/key.pem:ro
ports:
- 8080:8080
environment:
@@ -34,7 +36,7 @@ services:
MAX_LOGIN_ATTEMPS: "10"
#SECRETS
- PASSWORD_PEPPER: ""
+ PASSWORD_PEPPER: "" #A base64 encoded secret is required. raw string, vault://, file:// allowed
DATABASE_PASSWORD: ""
REDIS_PASSWORD: ""
#if MEMCACHE_ONLY is false, then the following keys are required to connect to a VNCACHE cluster
@@ -44,7 +46,6 @@ services:
#HTTP
HTTP_DOWNSTREAM_SERVERS: '[]'
HTTP_TRACE_ON: "false"
- #SSL_JSON: '{"cert": "ssl/cert.pem", "privkey":"ssl/priv.pem"}'
-
- SERVER_ARGS: ""
+
+ SERVER_ARGS: "--setup" #remove the setup flag after you are done setting up the server