File tree Expand file tree Collapse file tree 3 files changed +0
-72
lines changed Expand file tree Collapse file tree 3 files changed +0
-72
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,3 @@ ENV BUF_VERSION="1.57.0"
2121RUN curl -sSL \
2222 "https://github.com/bufbuild/buf/releases/download/v${BUF_VERSION}/buf-$(uname -s)-$(uname -m)" \
2323 -o "${BIN}/buf" && chmod +x "${BIN}/buf"
24-
25- # Install PACE CLI
26- ENV PACE_VERSION="1.25.0"
27- RUN curl -sSL -O \
28- "https://github.com/getstrm/cli/releases/download/v${PACE_VERSION}/pace_linux_amd64.tar.gz" && \
29- tar xzf pace_linux_amd64.tar.gz && \
30- mv pace "${BIN}/pace" && \
31- chmod +x "${BIN}/pace"
Original file line number Diff line number Diff line change @@ -21,45 +21,6 @@ services:
2121 networks :
2222 - postgres
2323
24- postgres_pace :
25- container_name : postgres_pace
26- image : postgres:16.2
27- environment :
28- POSTGRES_USER : pace
29- POSTGRES_PASSWORD : pace
30- POSTGRES_DB : pace
31- PGDATA : /data/postgres
32- PGUSER : pace # Required for health check
33- healthcheck :
34- test : ["CMD-SHELL", "pg_isready"]
35- interval : 2s
36- timeout : 2s
37- retries : 20
38- command : postgres -c listen_addresses='*'
39- ports :
40- - " 5431:5432"
41- networks :
42- - postgres_pace
43-
44- pace_app :
45- depends_on :
46- postgres_pace :
47- condition : service_healthy
48- postgres :
49- condition : service_healthy
50- container_name : pace
51- image : ghcr.io/getstrm/pace:latest-alpha
52- volumes :
53- - ./pace/:/app/config/
54-
55- ports :
56- - " 8080:8080" # Spring Boot
57- - " 9090:9090" # Envoy JSON / gRPC Proxy
58- - " 50051:50051" # gRPC
59- networks :
60- - postgres_pace
61- - postgres
62-
6324 dev :
6425 container_name : dev
6526 build :
@@ -69,18 +30,12 @@ services:
6930 - .:/workspace:cached
7031 command : sleep infinity
7132 depends_on :
72- postgres_pace :
73- condition : service_healthy
7433 postgres :
7534 condition : service_healthy
7635 networks :
77- - postgres_pace
7836 - postgres
7937
8038networks :
81- postgres_pace :
82- name : postgres_pace
83- driver : bridge
8439 postgres :
8540 name : postgres
8641 driver : bridge
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments