Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a1511f1ec | |||
| d798eff5c6 |
8
my-.env
Normal file
8
my-.env
Normal file
@@ -0,0 +1,8 @@
|
||||
LC_ALL=en_US.UTF-8
|
||||
LANG=en_US.UTF-8
|
||||
MailConfig__EmailServer="box.cahaa.net"
|
||||
MailConfig__EmailFrom="lubelog@cahaa.net"
|
||||
MailConfig__UseSSL="true"
|
||||
MailConfig__Port=465
|
||||
MailConfig__Username="clint@cahaa.net"
|
||||
MailConfig__Password="***************"
|
||||
28
my-docker-compose.yml
Normal file
28
my-docker-compose.yml
Normal file
@@ -0,0 +1,28 @@
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/hargata/lubelogger:latest
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
# volumes used to keep data persistent
|
||||
volumes:
|
||||
- config:/App/config
|
||||
- data:/App/data
|
||||
- documents:/App/wwwroot/documents
|
||||
- images:/App/wwwroot/images
|
||||
- temp:/App/wwwroot/temp
|
||||
- log:/App/log
|
||||
- keys:/root/.aspnet/DataProtection-Keys
|
||||
# expose port and/or use serving via traefik
|
||||
ports:
|
||||
- 18180:8080
|
||||
env_file:
|
||||
- .env
|
||||
volumes:
|
||||
config: null
|
||||
data: null
|
||||
documents: null
|
||||
images: null
|
||||
temp: null
|
||||
log: null
|
||||
keys: null
|
||||
networks: {}
|
||||
Reference in New Issue
Block a user