0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Podman で Wiki.js インストール

0
Posted at

Amazon Linux 2023 に Podman で Wiki.js を入れたメモ。
127.0.0.1 のみで listen させて前にリバプロを置く想定。

# dnf install -y podman podman-quadlet

# podman pull ghcr.io/requarks/wiki:2
# podman volume create wiki-data

# vi /etc/containers/systemd/wikijs.container

[Container]
Image=ghcr.io/requarks/wiki:2
ContainerName=wikijs
Volume=wiki-data:/wiki/data
PublishPort=127.0.0.1:3000:3000
Environment=DB_TYPE=sqlite
Environment=DB_FILEPATH=/wiki/data/db.sqlite

[Install]
WantedBy=multi-user.target

# systemctl daemon-reload
# systemctl start wikijs.service
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?