Skip to content

Commit

Permalink
use golang 1.15 and postgres 13
Browse files Browse the repository at this point in the history
  • Loading branch information
0-haha committed Apr 16, 2021
1 parent 3ca3b76 commit ea7fb3a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3'
services:
demo-api-pg:
#build: ./
image: golang:1.14
image: golang:1.15
volumes:
- ./src:/go/src/
working_dir: /go/src/
Expand All @@ -20,7 +20,7 @@ services:
entrypoint: go run demo_pg/main.go
demo-api-mongo:
#build: ./
image: golang:1.14
image: golang:1.15
volumes:
- ./src:/go/src/
working_dir: /go/src/
Expand All @@ -36,7 +36,7 @@ services:
container_name: secureai-dev-demo-api-mongo
entrypoint: go run demo_mongo/main.go
postgres:
image: postgres:12
image: postgres:13
ports:
- "7000:5432"
volumes:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/secure-for-ai/secureai-microsvs

go 1.14
go 1.15

require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
Expand Down

0 comments on commit ea7fb3a

Please sign in to comment.