mirror of
https://github.com/dnote/dnote
synced 2026-03-14 14:35:50 +01:00
Fix rules (#438)
* Fix network * Fix migrations for table that no longer exist * Document changed behavior
This commit is contained in:
parent
0d9a1810bb
commit
6e690ea4da
9 changed files with 22 additions and 111 deletions
|
|
@ -10,4 +10,4 @@ tarballName="dnote_server_${version}_linux_amd64.tar.gz"
|
|||
# copy over the build artifact to the Docker build context
|
||||
cp "$projectDir/build/server/$tarballName" "$dir"
|
||||
|
||||
docker build -t dnote/dnote:"$version" --build-arg tarballName="$tarballName" .
|
||||
docker build --network=host -t dnote/dnote:"$version" --build-arg tarballName="$tarballName" .
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ services:
|
|||
restart: always
|
||||
|
||||
dnote:
|
||||
image: dnote/dnote
|
||||
image: dnote/dnote:1.0.1
|
||||
environment:
|
||||
GO_ENV: PRODUCTION
|
||||
DBSkipSSL: "true"
|
||||
|
|
@ -22,6 +22,7 @@ services:
|
|||
DBUser: dnote
|
||||
DBPassword: dnote
|
||||
WebURL: localhost:3000
|
||||
OnPremise: "true"
|
||||
SmtpHost:
|
||||
SmtpPort:
|
||||
SmtpUsername:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue