Skip to content

Commit

Permalink
better handling of incremental update of cached docker CI containers
Browse files Browse the repository at this point in the history
  • Loading branch information
parvit committed Apr 28, 2024
1 parent eff6954 commit dbb9320
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions docker/server-env/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ services:
- QPEP_SLOWSTART=${QPEP_SLOWSTART}
- QPEP_ADDRESS:${QPEP_ADDRESS}
- QPEP_GATEWAY:127.0.0.1
- GO_VERSION=${GO_VERSION}
- QPEP_REPO=${QPEP_REPO}
- QPEP_BRANCH=${QPEP_BRANCH}
- QPEP_REV=${QPEP_REV}
build:
context: server/
args:
- GO_VERSION=${GO_VERSION}
- QPEP_REPO=${QPEP_REPO}
- QPEP_BRANCH=${QPEP_BRANCH}
- QPEP_REV=${QPEP_REV}
extra_hosts:
- "MQTT:${SERVER_ADDRESS}"
ports:
Expand Down
10 changes: 5 additions & 5 deletions docker/server-env/server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ ENV CGO_ENABLED "1"
ENV GOROOT "/opt/go"
ENV GOPATH "/opt/gopath"
ENV BUILDKIT_PROGRESS "plain"

ENV QPEP_BACKEND="quic-go"
ENV QPEP_CCA="reno"
ENV QPEP_SLOWSTART="basic"
ENV QPEP_ADDRESS="127.0.0.1"
ENV QPEP_GATEWAY="127.0.0.1"

ARG GO_VERSION="1.20.14"
ARG QPEP_REPO="https://github.com/Project-Faster/qpep.git"
ARG QPEP_BRANCH="main"
ARG QPEP_REV="HEAD"
ENV GO_VERSION="1.20.14"
ENV QPEP_REPO="https://github.com/Project-Faster/qpep.git"
ENV QPEP_BRANCH="main"
ENV QPEP_REV="HEAD"

USER root

Expand Down

0 comments on commit dbb9320

Please sign in to comment.