Skip to content

Commit 336ce4b

Browse files
Fixed authentication with wally
1 parent f29f9e3 commit 336ce4b

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

docker-compose-dev.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ services:
33
image: ghcr.io/krescent-studios/wally
44
restart: always
55
environment:
6-
- WALLY_AUTH_VALUE=${WALLY_AUTH_VALUE}
6+
- WALLY_auth=${WALLY_auth}
77
ports:
88
- "9002:8000"
99
networks:

wally-registry-backend/Rocket.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
address = "0.0.0.0"
66
port = 8000
77
index_url = "https://github.com/Krescent-Studios/wally-index"
8-
auth = { type = "api-key" }
8+
auth = { type = "api-key", value = "this-should-be-changed" }
99
storage = { type = "local" }
1010

1111
[debug]

0 commit comments

Comments
 (0)