volumes:
open-webui:
services:
webui:
image: ghcr.io/open-webui/open-webui:main
environment:
OPENAI_API_KEY: "sk-12345"
ports:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <match target="pattern"> | |
| <test qual="any" name="family"> | |
| <string>sans-serif</string> | |
| </test> | |
| <edit name="family" mode="prepend" binding="strong"> | |
| <string>Noto Sans CJK JP</string> | |
| </edit> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| volumes: | |
| open-webui: | |
| services: | |
| webui: | |
| image: ghcr.io/open-webui/open-webui:main | |
| environment: | |
| OPENAI_API_KEY: "sk-proj-..." | |
| ports: | |
| - 3000:8080 |
Githubでclassicなパーソナルアクセストークンを作成したところ、「project(read: project)」への権限付与だけではcloneできず、「repo(とrepo以下すべて)」にも権限を付与したところcloneができた。
$ ls
compose.yml node-home
$ cat compose.yml
services:
node:
image: node:lts
command: ["tail", "-f", "/dev/null"]
user: node
$ docker run --rm -it ubuntu:latest bash
root@78320631a485:/# cd ~
root@05e07354a801:~# apt-get update && apt-get install golang ca-certificates
root@05e07354a801:~# go install go.k6.io/xk6/cmd/xk6@latest
root@05e07354a801:~# /root/go/bin/xk6 build latest --with github.com/tmieulet/xk6-cognito
root@05e07354a801:~# ls -la
total 48744
drwx------ 1 root root 4096 Sep 6 05:28 .
こんだけ
$ docker run --rm -it node:lts bash
node@3f80fb74707d:~$ mkdir fuga
node@3f80fb74707d:~$ cd fuga
node@3f80fb74707d:~/fuga$ npm init -y
Wrote to /home/node/fuga/package.json:
NewerOlder
