Use local docker again
This commit is contained in:
parent
7be6586abc
commit
e01e614fd5
3 changed files with 65 additions and 5 deletions
63
compose.yml
Normal file
63
compose.yml
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
services:
|
||||||
|
godash:
|
||||||
|
profiles: [build]
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile: ./docker/Dockerfile
|
||||||
|
args:
|
||||||
|
- GOLANG_VERSION=${GOLANG_VERSION}
|
||||||
|
- NODE_VERSION=${NODE_VERSION}
|
||||||
|
- ALPINE_VERSION=${ALPINE_VERSION}
|
||||||
|
|
||||||
|
backend:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile_inline: |
|
||||||
|
ARG GOLANG_VERSION
|
||||||
|
FROM golang:${GOLANG_VERSION}-alpine
|
||||||
|
RUN apk add tzdata
|
||||||
|
WORKDIR /app
|
||||||
|
COPY ./go.mod .
|
||||||
|
COPY ./go.sum .
|
||||||
|
RUN go mod download
|
||||||
|
RUN go install github.com/cosmtrek/air@latest
|
||||||
|
COPY ./.air.toml .
|
||||||
|
args:
|
||||||
|
- GOLANG_VERSION=${GOLANG_VERSION}
|
||||||
|
command: air -c .air.toml
|
||||||
|
environment:
|
||||||
|
- TZ=Europe/Berlin
|
||||||
|
- LOG_LEVEL=debug
|
||||||
|
- TITLE=DEV
|
||||||
|
- APP_VERSION=v0.0.1-dev
|
||||||
|
- BUILD_TIME=2023-04-05T20:48:07Z
|
||||||
|
ports:
|
||||||
|
- 4000:4000
|
||||||
|
volumes:
|
||||||
|
- ./:/app/
|
||||||
|
|
||||||
|
frontend:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
dockerfile_inline: |
|
||||||
|
ARG NODE_VERSION
|
||||||
|
FROM node:${NODE_VERSION}-alpine
|
||||||
|
WORKDIR /app/web
|
||||||
|
COPY ./web/package.json .
|
||||||
|
COPY ./web/yarn.lock .
|
||||||
|
RUN yarn install --frozen-lockfile
|
||||||
|
args:
|
||||||
|
- NODE_VERSION=${NODE_VERSION}
|
||||||
|
container_name: frontend
|
||||||
|
command: yarn run tailwind:dev
|
||||||
|
tty: true
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
||||||
|
|
||||||
|
yarn:
|
||||||
|
profiles: [install]
|
||||||
|
image: node:${NODE_VERSION}-alpine
|
||||||
|
working_dir: /app/web
|
||||||
|
entrypoint: yarn
|
||||||
|
volumes:
|
||||||
|
- .:/app
|
|
@ -12,7 +12,7 @@ COPY . .
|
||||||
RUN go build -ldflags="-s -w" cmd/godash/godash.go
|
RUN go build -ldflags="-s -w" cmd/godash/godash.go
|
||||||
|
|
||||||
FROM node:${NODE_VERSION}-alpine AS nodeBuilder
|
FROM node:${NODE_VERSION}-alpine AS nodeBuilder
|
||||||
WORKDIR /app
|
WORKDIR /web
|
||||||
|
|
||||||
COPY ./internal/router/templates.go /internal/router/templates.go
|
COPY ./internal/router/templates.go /internal/router/templates.go
|
||||||
COPY ./web .
|
COPY ./web .
|
||||||
|
|
|
@ -17,9 +17,6 @@ parse_yaml() {
|
||||||
|
|
||||||
eval $(parse_yaml .gitlab/_common.gitlab-ci.yml)
|
eval $(parse_yaml .gitlab/_common.gitlab-ci.yml)
|
||||||
|
|
||||||
echo "DOCKER_VERSION="$variables_DOCKER_VERSION >.env
|
echo "GOLANG_VERSION="$variables_GOLANG_VERSION >.env
|
||||||
echo "GOLANG_VERSION="$variables_GOLANG_VERSION >>.env
|
|
||||||
echo "NODE_VERSION="$variables_NODE_VERSION >>.env
|
echo "NODE_VERSION="$variables_NODE_VERSION >>.env
|
||||||
echo "ALPINE_VERSION="$variables_ALPINE_VERSION >>.env
|
echo "ALPINE_VERSION="$variables_ALPINE_VERSION >>.env
|
||||||
echo "DEBIAN_VERSION="$variables_DEBIAN_VERSION >>.env
|
|
||||||
echo "TELEPORT_VERSION="$variables_TELEPORT_VERSION >>.env
|
|
||||||
|
|
Loading…
Reference in a new issue