Appwrite base docker image with applications and extensions built and installed.
These instructions will cover usage information to help your run Appwrite's base docker container.
In order to run this container you'll need docker installed.
docker run appwrite/baseWe use Container Structure Test to run test for the docker image. In order to run test first install Container strucutre test using the following command.
curl -LO https://storage.googleapis.com/container-structure-test/latest/container-structure-test-linux-amd64 && chmod +x container-structure-test-linux-amd64 && sudo mv container-structure-test-linux-amd64 /usr/local/bin/container-structure-testFirst build and tag the docker image and then run the test using the configuration file.
docker build -t appwrite-base-test .
container-structure-test test --config tests.yaml --image appwrite-base-testdocker build --tag appwrite/base:1.0.0 .
docker push appwrite/base:1.0.0Multi-arch build (using buildx):
docker buildx build --platform linux/amd64,linux/arm64/v8,linux/ppc64le --tag appwrite/base:1.0.0 --push .
The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php