Skip to content

Commit

Permalink
fix dockerised webclient
Browse files Browse the repository at this point in the history
  • Loading branch information
karacolada committed Apr 16, 2024
1 parent 5dbf58e commit fefd154
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion simpleclient/docker/compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: fuji-web

services:
nginx:
image: nginx:1.25.3-alpine
Expand All @@ -7,11 +9,12 @@ services:
volumes:
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
- .:/var/www/html
- ./../icon:/var/www/html/icon

php:
image: php:8.1-fpm
volumes:
- .:/var/www/html

fuji:
fuji-server:
image: fuji-ext:latest
2 changes: 1 addition & 1 deletion simpleclient/docker/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</nav>
<?php
######################## local config ##########################
$fuji_server = 'http://fuji:1071/fuji/api/v1/evaluate';
$fuji_server = 'http://fuji-server:1071/fuji/api/v1/evaluate';
$fuji_username = 'yourusername';
$fuji_password = 'yourpassword';
$usegithub = true;
Expand Down

0 comments on commit fefd154

Please sign in to comment.