일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- c# 추상 클래스
- 플러터
- c# 윈폼
- 유니티
- Flutter
- github
- C언어 포인터
- Data Structure
- C++
- c#
- c언어
- docker
- C# delegate
- 깃
- Unity
- vim
- Algorithm
- Python
- dart 언어
- jupyter lab
- gitlab
- 구조체
- git
- 다트 언어
- jupyter
- Houdini
- 포인터
- HTML
- c# winform
- 도커
Archives
- Today
- Total
nomad-programmer
[OS/Rocky] Rocky Linux9 - Wiki.JS 설치 with PostgreSQL 본문
Wiki.JS는 깔끔한 UI가 돋보이는 wiki 서버이다.
Wiki.JS에서 추천하는 DB는 PostgreSQL 데이터베이스이다. 따라서 해당 DB가 설치되어있어야 한다.
https://growupcoding.tistory.com/99
아래는 내가 셋팅했던 docker compose yml 파일 내용이다. 참고하길 바란다.
version: '3.6'
services:
postgres:
container_name: postgres
image: postgres:latest
restart: always
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- TZ=Asia/Seoul
volumes:
- /data/postgresql/data:/var/lib/postgresql/data
ports:
- "5432:5432"
pgadmin:
container_name: pgadmin
image: dpage/pgadmin4
restart: always
ports:
- "5431:80"
volumes:
- /data/postgresql/pgadmin:/var/lib/pgadmin
environment:
- PGADMIN_DEFAULT_EMAIL=admin@example.com
- PGADMIN_DEFAULT_PASSWORD=pgadmin
- TZ=Asia/Seoul
depends_on:
- postgres
Rocky Linux 9에서 설치하는 방법은 아래의 블로그를 참고하면 된다.
https://ko.linux-console.net/?p=3559#gsc.tab=0
Wiki.JS 공식 홈페이지 설치 가이드
https://docs.requarks.io/install/config
'OS > Rocky' 카테고리의 다른 글
[OS/Rocky] Obsidian 데스트탑 메뉴 설정 (2) | 2023.10.09 |
---|---|
[OS/Rocky] 나의 vim 환경 설정 (0) | 2023.10.09 |
[OS/Rocky] Tuned (성능 향상 관련) (0) | 2023.09.16 |
[OS/Rocky] Rocky Linux9 - NFS Server (0) | 2023.09.13 |
[OS/Rocky] Rocky Linux9 - FFMPEG 컴파일 및 설치 (0) | 2023.09.13 |
Comments