Skip to content

WordPress

WordPress is web software you can use to create a beautiful website or blog. We like to say that WordPress is both free and priceless at the same time.

Categories

How to use Gravatar

모든 워드프레스 사이트에 그라바타가 적용된다. registered with 그라바타에 등록하면, 프로필 정보는 등록된 이메일 주소의 정보와 같아지고, 댓글 옆에 사용자정의 그라바타 이미지가 표시된다. 그리고 선택적으로(optionally) 워드프레스 사이트 어느 곳이든지 표시할 수 있다. 그라바타에 등록하지 않으면, 관리자가 설정한 기본 아이콘이 이름 옆에 표시된다.

Login

$HOST/wp-login.php를 입력하면 로그인 화면이 나타난다.

docker-compose file

services:
  db:
    # We use a mariadb image which supports both amd64 & arm64 architecture
    image: mariadb:10.6.4-focal
    # If you really want to use MySQL, uncomment the following line
    #image: mysql:8.0.27
    command: '--default-authentication-plugin=mysql_native_password'
    volumes:
      - db_data:/var/lib/mysql
    restart: always
    environment:
      - MYSQL_ROOT_PASSWORD=somewordpress
      - MYSQL_DATABASE=wordpress
      - MYSQL_USER=wordpress
      - MYSQL_PASSWORD=wordpress
    expose:
      - 3306
      - 33060
  wordpress:
    image: wordpress:latest
    volumes:
      - wp_data:/var/www/html
    ports:
      - 80:80
    restart: always
    environment:
      - WORDPRESS_DB_HOST=db
      - WORDPRESS_DB_USER=wordpress
      - WORDPRESS_DB_PASSWORD=wordpress
      - WORDPRESS_DB_NAME=wordpress
volumes:
  db_data:
  wp_data:

List of CMS projects

See also

Favorite site