Skip to content

Commit 6d0d67c

Browse files
gianlucalaurogithub-actions[bot]
authored andcommitted
Updated dockerfile with GUI (#388)
1 parent d3dc793 commit 6d0d67c

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

.github/.domain/domains.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"cb01new": {
3-
"domain": "lol",
4-
"full_url": "https://cb01net.lol/",
5-
"old_domain": "sbs",
6-
"time_change": "2025-09-09 13:31:48"
3+
"domain": "fun",
4+
"full_url": "https://cb01net.fun/",
5+
"old_domain": "lol",
6+
"time_change": "2025-09-15 15:21:30"
77
},
88
"animeunity": {
99
"domain": "so",
@@ -36,10 +36,10 @@
3636
"time_change": "2025-09-06 18:24:29"
3737
},
3838
"streamingcommunity": {
39-
"domain": "online",
40-
"full_url": "https://streamingcommunityz.online/",
41-
"old_domain": "bid",
42-
"time_change": "2025-09-08 15:20:32"
39+
"domain": "cc",
40+
"full_url": "https://streamingcommunityz.cc/",
41+
"old_domain": "online",
42+
"time_change": "2025-09-15 12:41:31"
4343
},
4444
"altadefinizionegratis": {
4545
"domain": "ist",

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,13 @@ docker build -t streaming-community-api .
796796

797797
Run the container with Cloudflare DNS for better connectivity:
798798
```
799-
docker run -it --dns 1.1.1.1 -p 8000:8000 streaming-community-api
799+
docker run -d --name streaming-community --dns 1.1.1.1 -p 8000:8000 streaming-community-api
800+
```
801+
802+
Tip CLI:
803+
- To run the CLI inside the container, attach to the container and execute:
804+
```
805+
docker exec -it streaming-community python test_run.py
800806
```
801807
</details>
802808

dockerfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1010

1111
WORKDIR /app
1212

13-
COPY requirements.txt .
14-
13+
COPY requirements.txt ./
1514
RUN pip install --no-cache-dir -r requirements.txt
1615

16+
COPY GUI/requirements.txt ./GUI/requirements.txt
17+
RUN pip install --no-cache-dir -r GUI/requirements.txt
18+
1719
COPY . .
1820

19-
CMD ["python", "test_run.py"]
21+
EXPOSE 8000
22+
23+
CMD ["python", "GUI/manage.py", "runserver", "0.0.0.0:8000"]

0 commit comments

Comments
 (0)