Docker: Add lubelogger
This commit is contained in:
parent
45a24d11e9
commit
b23b617b95
2 changed files with 28 additions and 0 deletions
|
@ -157,6 +157,11 @@ korhonen.cc, *.korhonen.cc {
|
|||
respond {remote_host}
|
||||
}
|
||||
|
||||
@lubelogger host lubelogger.korhonen.cc
|
||||
handle @lubelogger {
|
||||
reverse_proxy lubelogger:8080
|
||||
}
|
||||
|
||||
handle {
|
||||
respond "404 Not Found" 404
|
||||
}
|
||||
|
|
23
docker/lubelogger/docker-compose.yaml
Normal file
23
docker/lubelogger/docker-compose.yaml
Normal file
|
@ -0,0 +1,23 @@
|
|||
volumes:
|
||||
data: {}
|
||||
keys: {}
|
||||
|
||||
services:
|
||||
lubelogger:
|
||||
image: ghcr.io/hargata/lubelogger:latest
|
||||
container_name: lubelogger
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- data:/App/data
|
||||
- keys:/root/.aspnet/DataProtection-Keys
|
||||
env_file:
|
||||
- .env
|
||||
networks:
|
||||
- proxy
|
||||
- postgres
|
||||
|
||||
networks:
|
||||
postgres:
|
||||
external: true
|
||||
proxy:
|
||||
external: true
|
Loading…
Add table
Add a link
Reference in a new issue