docs: updated for docker; feat: local and latest dockerfiles; add: .dockerignore file; feat: implemented health check for adrianux app

This commit is contained in:
ahoemann 2025-02-05 18:28:17 +01:00
parent 2b6885055b
commit fa730cac1b
7 changed files with 87 additions and 16 deletions

13
docker-compose.yml Normal file
View file

@ -0,0 +1,13 @@
---
services:
build:
context: "."
dockerfile: "latest.dockerfile"
container_name: "adrianux"
image: "adrianux:latest"
environment:
- "GIT_URL=http://git.adrianux.net"
- "WEBSITE_URL=http://adrianux.net"
- "DEBUG_MODE=False"
ports:
- "127.0.0.1:8080:8080"