-
-
Notifications
You must be signed in to change notification settings - Fork 64
Home
Quick, No Configuration Guide for Spinning Up LubeLogger in Docker
Run the following commands:
docker pull ghcr.io/hargata/lubelogger:latest
curl https://raw.githubusercontent.com/hargata/lubelog/main/.env -o .env
curl https://raw.githubusercontent.com/hargata/lubelog/main/docker-compose.yml -o docker-compose.yml
docker compose up -d
Occasionally you will find a LubeLogger Docker image tagged edge
Edge-tagged Docker images contains the latest changes merged into main
and hence may contain unstable/untested functionalities/bug fixes. Use this at your own discretion.
Once the changes have been tested thoroughly, we will create a release and a new Docker image will be created tagged with the version number. There is no fixed time frame for the QA/Testing phase, so there is a chance that a feature/fix will remain in the edge tagged image for an extended period of time.
The following section is specifically for developers: those wishing to build LubeLogger on their own and/or contribute to the project
- .NET 8 SDK
- .NET IDE (Visual Studio / Rider) - Optional, but highly recommended
- Clone the repository
- Open up CarCareTracker.sln in your IDE
- Build solution in IDE
- Clone this repository
- Run
dotnet restore
- Clone this repository
- Run
docker build --build-arg="TARGETARCH=linux/amd64" -t lubelogger -f Dockerfile .