Skip to content
Discussion options

You must be logged in to vote

Hi @adrian-purnama — both of your questions have answers, so let me lay them out.

1. Pre-built Docker image

This has been available since very early on — every release tag going back to v0.1.1 publishes a multi-arch image (linux/amd64 + linux/arm64) to GHCR:

docker pull ghcr.io/rmyndharis/openwa:latest   # or a specific tag like :0.10.2

A minimal one-liner deploy looks exactly like what you sketched:

services:
  openwa:
    image: ghcr.io/rmyndharis/openwa:latest
    ports:
      - "2785:2785"
    volumes:
      - ./data:/app/data
    restart: unless-stopped

So you do not need to clone the repo and build locally — that's just an alternative documented in the Quick Start for users who want…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by rmyndharis
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants