CoreOS 及 Docker

CoreOS 及 Docker

由於 docker 太多東西要學
先記錄一下進度

  • CoreOS 安裝 docker
  • Docker 基本指令
  • Image 選擇 - Apline
  • Docker-compose
  • Docker 建立 Nginx + Let's Encrypt + Proxy Server
  • Docker 設定 Ghost

coreos-and-docker

什麼是 CoreOS?

就是一個 Container 專用的 Linux。在 DigitalOcean 或 Linode 也可以安裝 CoreOS,我就用 Linode $5 hosting 來開設一個。CoreOS 原生就支援 docker 在,基本上也預計你什麼東西都會用 docker 安裝,所以 apt-get 什麼的也是沒有的。
最基本來一個 docker -h指令,可以先看看 docker 有什麼指令可以用。

Management Commands:
  config      Manage Docker configs
  container   Manage containers
  image       Manage images
  network     Manage networks
  node        Manage Swarm nodes
  plugin      Manage plugins
  secret      Manage Docker secrets
  service     Manage services
  swarm       Manage Swarm
  system      Manage Docker
  trust       Manage trust on Docker images
  volume      Manage volumes

Commands:
  attach      Attach local standard input, output, and error streams to a running container
  build       Build an image from a Dockerfile
  commit      Create a new image from a container's changes
  cp          Copy files/folders between a container and the local filesystem
  create      Create a new container
  diff        Inspect changes to files or directories on a container's filesystem
  events      Get real time events from the server
  exec        Run a command in a running container
  export      Export a container's filesystem as a tar archive
  history     Show the history of an image
  images      List images
  import      Import the contents from a tarball to create a filesystem image
  info        Display system-wide information
  inspect     Return low-level information on Docker objects
  kill        Kill one or more running containers
  load        Load an image from a tar archive or STDIN
  login       Log in to a Docker registry
  logout      Log out from a Docker registry
  logs        Fetch the logs of a container
  pause       Pause all processes within one or more containers
  port        List port mappings or a specific mapping for the container
  ps          List containers
  pull        Pull an image or a repository from a registry
  push        Push an image or a repository to a registry
  rename      Rename a container
  restart     Restart one or more containers
  rm          Remove one or more containers
  rmi         Remove one or more images
  run         Run a command in a new container
  save        Save one or more images to a tar archive (streamed to STDOUT by default)
  search      Search the Docker Hub for images
  start       Start one or more stopped containers
  stats       Display a live stream of container(s) resource usage statistics
  stop        Stop one or more running containers
  tag         Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
  top         Display the running processes of a container
  unpause     Unpause all processes within one or more containers
  update      Update configuration of one or more containers
  version     Show the Docker version information
  wait        Block until one or more containers stop, then print their exit codes

升級 CoreOS 的 docker 版本

第一次使用前記緊先升級一下 docker 的 version
在 CoreOS 裡使用 update_engine_client -update 指令
升級做最新版本的 docker

常用的 docker 指令

指令也有不少,不過我還只用最常用幾個指令就可以了。
docker search <image name> - 搜尋有什麼 docker image 可以用,當然到 Docker Hub 看也可以的。
docker pull <image name> - 把所需的 image 拉下來
docker images - 看看本機有什麼 image
docker run <image name> --name <container name> - 運行 container,ctrl + c 可以停止
docker run <container name> -d - 在背景運行 container,需要這樣才不會佔據你的 terminal
docker ps - 查看在運行的 container
docker ps -a - 查看所有 container (包括停用的 container)
docker stop <container name> - 停止 container
docker rm <container name> - 刪除 container
docker image rm <image name> - 刪除 image

CoreOS 用後感

在開始使用 CoreOS 後,幾乎學習使用 ubuntu 的一套也用不著,但理念還是一樣的,不過每次都用 docker run xxxx 的指令太煩人了,下回開始會使用 docker-compose 來將指令寫進檔案中使用。

Read more

Unity AI Assistant 2.7.0 將不再支援 MCP 連接

Unity AI Assistant 2.7.0 將不再支援 MCP 連接

相信有不少人用 Unity AI MCP 來連接 Claude Code / Codex 等 AI 工具進行開發,近日隨著 Unity AI 進入公測,Unity 官方 Package com.unity.ai.assistant 亦升級到 v2.7.0-pre.2 。這個新版本的 Unity AI Assistant 在 Unity MCP Server 上加上了限制,Connected Clients limit 在 0 個 direct connection(以前是 Unlimited),就是不讓開發者使用其他 AI 工具來支援開發。 官方也有說明可以怎樣做,

Game Engine 的選擇

Game Engine 的選擇

在前陣子在決定寫 game 的期間,我試用了三大主流 Game Engine 來實作 demo,現在比較一下 Unreal,Unity 及 Godot 適合什麼開發者。 自我定位 在開始選擇前,我首先要確定自己是什麼開發者,以什麼角度去選擇 Game Engine。 * 首先我是獨立開發者,就是一個人會負責所有東西,繪圖設計,故事劇情,程式開發,宣傳銷售,後續經營,所以簡單很重要。 * 我使用 Macbook Pro M1 來開發,由於我沒有 desktop,單靠效能有限的主機來開發,所以效能夠不夠對我來說也是很重要。 * 遊戲平台,我的初期目標是 Steam/Andriod/iOS,如果有成果才會推向各大主機,雖然三大 Game Engine 都支持多平台輸出,但實際上調查後發現還是有一些限制,我會在下面解釋。 * 遊戲類型,