We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29f9e3 commit 336ce4bCopy full SHA for 336ce4b
3 files changed
docker-compose-dev.yml
@@ -0,0 +1,15 @@
1
+services:
2
+ wally-backend:
3
+ build:
4
+ context: .
5
+ dockerfile: Dockerfile
6
+ restart: always
7
+ environment:
8
+ - WALLY_auth=${WALLY_auth}
9
+ ports:
10
+ - "9002:8000"
11
+ networks:
12
+ - wally
13
+
14
+networks:
15
+ wally:
docker-compose.yml
@@ -3,7 +3,7 @@ services:
image: ghcr.io/krescent-studios/wally
restart: always
environment:
- - WALLY_AUTH_VALUE=${WALLY_AUTH_VALUE}
ports:
- "9002:8000"
networks:
wally-registry-backend/Rocket.toml
@@ -5,7 +5,7 @@
address = "0.0.0.0"
port = 8000
index_url = "https://github.com/Krescent-Studios/wally-index"
-auth = { type = "api-key" }
+auth = { type = "api-key", value = "this-should-be-changed" }
storage = { type = "local" }
[debug]
0 commit comments