Seeflyer937
commited on
Commit
•
0908a25
1
Parent(s):
11fbe98
Create Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM ghcr.io/labring/fastgpt:latest
|
2 |
+
EXPOSE 3000
|
3 |
+
ENV PORT 3000
|
4 |
+
ADD ./config.json /app/data/config.json
|
5 |
+
ENV HOME_URL=/app/list
|
6 |
+
ENV DB_MAX_LINK=100
|
7 |
+
ENV TOKEN_KEY=any
|
8 |
+
ENV ROOT_KEY=root_key
|
9 |
+
ENV FILE_TOKEN_KEY=filetoken
|