Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8/dockerize #36

Merged
merged 35 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
052f512
Add go backend docker file
KordonDev Dec 21, 2022
7273350
Add dockerfile for fronten
KordonDev Jan 7, 2023
99ef88c
Add secrets file
KordonDev Jan 14, 2023
5d010ea
use flag instead of config file
KordonDev Jan 19, 2023
d681158
Add goreleaser
Oct 22, 2023
ba7a745
Goreleasing with cgo
Oct 31, 2023
6d3f7e1
sqlite in go
Nov 5, 2023
41fee2c
Set release mode
KordonDev Nov 11, 2023
6dcd36c
Updates
KordonDev Nov 11, 2023
afa13ef
Cleanup
KordonDev Nov 12, 2023
0d1ae12
Add build workflow
KordonDev Nov 12, 2023
0288849
Cleanup
KordonDev Nov 12, 2023
e9f5603
Rename
KordonDev Nov 12, 2023
95ac146
Build on push
KordonDev Nov 12, 2023
abc6fd0
Change node version
KordonDev Nov 12, 2023
3f7457d
fix script
KordonDev Nov 12, 2023
0e7e9d9
Release backend docker to github
KordonDev Nov 12, 2023
9fb38c7
use GITHUB_TOKEN
Nov 13, 2023
37e9a6d
change backend name
Nov 13, 2023
8216fee
Change image name
Nov 14, 2023
c379431
use token
Nov 14, 2023
8abbf7a
set permission
Nov 15, 2023
fdf4cc9
use github_token
Nov 15, 2023
555da64
use PAT
Nov 15, 2023
28491d6
push to ghcr
Nov 15, 2023
f3cd2b9
Write and read base url from window
KordonDev Nov 19, 2023
5a7b73d
Build frontend image
KordonDev Nov 20, 2023
66de60a
Fix BASE_URL
KordonDev Nov 20, 2023
5cce53c
Update backend dockerfile
KordonDev Nov 25, 2023
8bcf83c
Update backend dockerfile
KordonDev Nov 25, 2023
9acc3f4
Example docker-compose
KordonDev Nov 25, 2023
dd0dd01
remove unused file
KordonDev Nov 25, 2023
f998a3c
Docker multiplatform
KordonDev Dec 2, 2023
519c7ad
Docker frontend multiplatform
KordonDev Dec 9, 2023
9fca377
Fix docker setup
KordonDev Dec 11, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updates
  • Loading branch information
KordonDev committed Nov 12, 2023
commit 6dcd36c28b1c3ade78b78e5d44086743eda449ef
39 changes: 23 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/cloudflare/cfssl v1.6.1
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/gin-contrib/cors v1.4.0
github.com/gin-gonic/gin v1.8.1
github.com/gin-gonic/gin v1.9.1
github.com/glebarez/sqlite v1.10.0
github.com/go-co-op/gocron v1.32.1
github.com/mitchellh/mapstructure v1.5.0
Expand All @@ -18,8 +18,11 @@ require (
cloud.google.com/go v0.81.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/bytedance/sonic v1.10.2 // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
github.com/chenzhuoyu/iasm v0.9.1 // indirect
github.com/cncf/udpa/go v0.0.0-20210322005330-6414d713912e // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
Expand All @@ -30,6 +33,7 @@ require (
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
github.com/fullstorydev/grpcurl v1.8.1 // indirect
github.com/fxamacker/cbor/v2 v2.4.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/glebarez/go-sqlite v1.21.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v4 v4.1.0 // indirect
Expand All @@ -51,6 +55,7 @@ require (
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jonboulle/clockwork v0.2.2 // indirect
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
github.com/mattn/go-runewidth v0.0.12 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
Expand All @@ -67,6 +72,7 @@ require (
github.com/spf13/cobra v1.1.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/urfave/cli v1.22.5 // indirect
github.com/x448/float16 v0.8.4 // indirect
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
Expand All @@ -83,10 +89,11 @@ require (
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.16.0 // indirect
golang.org/x/mod v0.4.2 // indirect
golang.org/x/arch v0.6.0 // indirect
golang.org/x/mod v0.8.0 // indirect
golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
golang.org/x/tools v0.1.0 // indirect
golang.org/x/tools v0.6.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20210510173355-fb37daa5cd7a // indirect
Expand All @@ -103,21 +110,21 @@ require (
github.com/duo-labs/webauthn v0.0.0-20220330035159-03696f3d4499
github.com/duo-labs/webauthn.io v0.0.0-20200929144140-c031a3e0f95d
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator/v10 v10.10.0 // indirect
github.com/goccy/go-json v0.9.7 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.16.0 // indirect
github.com/goccy/go-json v0.10.2 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
github.com/ugorji/go/codec v1.2.7 // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210510120150-4163338589ed // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.3.6 // indirect
google.golang.org/protobuf v1.28.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
golang.org/x/crypto v0.15.0 // indirect
golang.org/x/net v0.18.0 // indirect
golang.org/x/sys v0.14.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
Loading