File tree Expand file tree Collapse file tree 4 files changed +20
-1
lines changed
Expand file tree Collapse file tree 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 5858 with :
5959 context : ./dashboard
6060 platforms : linux/amd64,linux/arm64
61- file : ./dashboard/Dockerfile
61+ file : ./dashboard/docker/ Dockerfile
6262 push : true
6363 tags : |
6464 ${{ steps.string_tag.outputs.lowercase }}:latest
Original file line number Diff line number Diff line change @@ -15,3 +15,6 @@ FROM nginx
1515WORKDIR /usr/share/nginx/html
1616
1717COPY --from=build /app/out/ ./
18+ # Replace the default server configuration, but leave the overall nginx
19+ # configuration
20+ COPY ./docker/server.nginx.conf /etc/nginx/conf.d/default.conf
Original file line number Diff line number Diff line change 1+ ## Self Hosting with Docker
2+ Example:
3+ ``` shell
4+ docker run -d -p 3001:80 --name lodestone-dashboard ghcr.io/lodestone-team/lodestone_dashboard
5+ ```
6+ And then the dashboard will be available at http://localhost:3001
Original file line number Diff line number Diff line change 1+ server {
2+ listen 80;
3+ server_name localhost;
4+
5+ root /usr/share/nginx/html;
6+
7+ location / {
8+ try_files $uri $uri/ /index.html;
9+ }
10+ }
You can’t perform that action at this time.
0 commit comments