Browse Source

build: small changes to get a working build

Klaas, Wilfried 4 years ago
parent
commit
7b728a0a67

+ 4 - 4
schematic-service-go/Dockerfile

@@ -24,20 +24,20 @@ RUN go mod download
 
 ENV GOOS="linux"
 ENV GOARCH="amd64"
+ENV CGO_ENABLED="0"
 
 RUN go build -ldflags="-s -w" -o schematic-service cmd/service.go 
 
 ## Task: set permissions
 
-RUN chmod 0755 /src/gomicro
+RUN chmod 0755 /src/schematic-service
 
 ## Task: runtime dependencies
 
 # hadolint ignore=DL3018
 RUN set -eux; \
     apk add --no-progress --quiet --no-cache --upgrade --virtual .run-deps \
-        tzdata \
-        openssl
+        tzdata
 
 # hadolint ignore=DL3018,SC2183,DL4006
 RUN set -eu +x; \
@@ -65,7 +65,7 @@ FROM alpine:3.11
 ARG RELEASE
 ENV IMG_VERSION="${RELEASE}"
 
-COPY --from=builder /src/gomicro /usr/local/bin/
+COPY --from=builder /src/schematic-service /usr/local/bin/
 COPY --from=builder /src/configs/service.yaml /config/
 COPY --from=builder /usr/share/rundeps /usr/share/rundeps
 

+ 8 - 9
schematic-service-go/configs/service.yaml

@@ -3,30 +3,29 @@ port: 8080
 # port of the https server
 sslport: 8443
 # this is the servicURL from outside
-serviceURL: http://127.0.0.1:8080
+serviceURL: http://192.168.178.14:8443
 # this is the registry URL from inside
-registryURL: http://127.0.0.1:8500
+registryURL:
 # this is the system id of this service. services in a cluster mode should have the same system id.
-systemID: easy1
+systemID: mcs1
 #sercret file for storing usernames and passwords
-secretfile: /tmp/storage/config/secret.yaml
+secretfile: /config/secret.yaml
 backup:
-    path: e:/temp/backup/schematics/new
+    path: /backup
     #\\OMV/backup/schematic/new
     period: "@every 24h"
 
 logging:
-    gelf-url: 127.0.0.1
-    gelf-port: 12201
+    gelf-url:
+    gelf-port:
 
 healthcheck:
     period: 30
 
 mongodb:
-    host: 127.0.0.1
+    host: 192.168.178.14
     port: 27017
     username:
     password:
     authdb: schematics
     database: schematics
-    

+ 1 - 1
schematic-service-go/deployments/buildDocker.cmd

@@ -1,3 +1,3 @@
 @echo off
 docker build ./ -t mcs/schematic-service-go:V1
-docker run --name schematic-service-go -p 8443:443 -p 8080:80 mcs/schematic-service-go:V1
+docker run --name schematic-service-go -p 8443:8443 -p 8080:8080 -v H:\privat\git-sourcen\WilliesSchematicsWorld\schematic-service-go\configs:/config -v H:\privat\git-sourcen\WilliesSchematicsWorld\backup:/backup mcs/schematic-service-go:V1

+ 5 - 1
schematic-service-go/devdata/mongo.txt

@@ -12,4 +12,8 @@ query with Collation {locale: "en", strength : 2}
 
 https://127.0.0.1:9443/api/v1/schematics?query={"$fulltext":"\"blue \" \"Mesa\""}&offset=0&limit=10
 
-{"name": "w.klaas@gmx.de", "password":"akteon0000", "admin": true}
+{"name": "w.klaas@gmx.de", "password":"akteon0000", "admin": true}
+
+
+./mongodump.exe --host 192.168.178.12:37017 -u admin -p akteon00 --authenticationDatabase admin -d schematics -o e:\temp\schematics_mongo.out
+./mongorestore.exe --host 192.168.178.14:27017 -u admin -p akteon00 --authenticationDatabase admin -d schematics E:\temp\schematics_mongo.out\schematics\