Skip to content

Commit d2bb3ff

Browse files
committed
Various improvements.
1 parent c7e34db commit d2bb3ff

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ RUN useradd --groups sudo --create-home --shell /bin/bash $USER \
102102
&& echo "${USER} ALL=(ALL) NOPASSWD:ALL" >/etc/sudoers.d/${USER} \
103103
&& chmod 0440 /etc/sudoers.d/${USER}
104104

105-
RUN rm -rf ${WORKDIR}/*
105+
RUN rm -rf /var/www/html/*
106106

107107
USER ${USER}

build/supervisord.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ logfile=/var/log/supervisor/supervisord.log
55
pidfile=/var/run/supervisord.pid
66

77
[program:php]
8-
command=/usr/bin/php8.3 -d variables_order=EGPCS /var/www/html/project/artisan serve --host=0.0.0.0 --port=80
8+
command=/usr/bin/php8.3 -d variables_order=EGPCS /var/www/html/artisan serve --host=0.0.0.0 --port=80
99
user=coder
1010
environment=LARAVEL_SAIL="1"
1111
stdout_logfile=/dev/stdout

main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ module "filebrowser" {
2727
version = "1.0.8"
2828
agent_id = coder_agent.main.id
2929
folder = "/var/www/html"
30+
database_path = "/home/coder/filebrowser.db"
3031
}
3132

3233
module "jetbrains_gateway" {

0 commit comments

Comments
 (0)