Update docker compose file
Browse files- docker-compose.yml +3 -1
docker-compose.yml
CHANGED
@@ -1,10 +1,12 @@
|
|
1 |
services:
|
2 |
lightrag:
|
|
|
|
|
3 |
build:
|
4 |
context: .
|
5 |
dockerfile: Dockerfile
|
6 |
tags:
|
7 |
-
- lightrag:latest
|
8 |
ports:
|
9 |
- "${PORT:-9621}:9621"
|
10 |
volumes:
|
|
|
1 |
services:
|
2 |
lightrag:
|
3 |
+
container_name: lightrag
|
4 |
+
image: ghcr.io/hkuds/lightrag:latest
|
5 |
build:
|
6 |
context: .
|
7 |
dockerfile: Dockerfile
|
8 |
tags:
|
9 |
+
- ghcr.io/hkuds/lightrag:latest
|
10 |
ports:
|
11 |
- "${PORT:-9621}:9621"
|
12 |
volumes:
|