Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN export GOFlAGS="-X 'main.Buildstamp=`date -u '+%Y-%m-%d %I:%M:%S%p'`'" \

RUN chmod +x entrypoint.sh

FROM jumpserver/guacd:1.5.5-bullseye
FROM jumpserver/guacd:1.5.5-trixie
ARG TARGETARCH
ENV LANG=en_US.UTF-8
USER root
Expand All @@ -38,7 +38,7 @@ ENV LD_LIBRARY_PATH=${PREFIX_DIR}/lib
ARG APT_MIRROR=http://deb.debian.org

RUN set -ex \
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list.d/debian.sources \
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& apt-get update \
&& apt-get install -y --no-install-recommends ${DEPENDENCIES} \
Expand Down
2 changes: 1 addition & 1 deletion ui/src/hooks/useGuacamoleClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ export function useGuacamoleClient(t: any) {
msg = msg + ': ' + status.message;
break;
}
message.error(msg);
message.error(msg, {duration: 10000});
};

const clientStateChanged = (state: any) => {
Expand Down