Simply pulling ghcr.io/muchobien/pocketbase:latest
should retrieve the correct image for your arch.
The architectures supported by this image are:
Architecture | Available |
---|---|
amd64 | ✅ |
arm64 | ✅ |
armv7 | ✅ |
This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags.
Tag | Available | Description |
---|---|---|
latest | ✅ | Stable releases from PocketBase |
x.x.x | ✅ | Patch release from PocketBase |
x.x | ✅ | Minor release from PocketBase |
x | ✅ | Major release from PocketBase |
Access the webui at <your-ip>:8090
, for more information check out PocketBase.
Here are some example snippets to help you get started creating a container.
version: "3.7"
services:
pocketbase:
image: ghcr.io/muchobien/pocketbase:latest
container_name: pocketbase
restart: unless-stopped
command:
- --encryptionEnv #optional
- ENCRYPTION #optional
environment:
ENCRYPTION: example #optional
ports:
- "8090:8090"
volumes:
- /path/to/data:/pb_data
docker cli (click here for more info)
docker run -d \
--name=pocketbase \
-p 8090:8090 \
-e ENCRYPTION=example `#optional` \
-v /path/to/data:/pb_data \
--restart unless-stopped \
ghcr.io/muchobien/pocketbase:latest \
--encryptionEnv ENCRYPTION `#optional`