Skip to content

Commit 3e2d4fb

Browse files
committed
Remove PACE
1 parent ce8e6f7 commit 3e2d4fb

File tree

3 files changed

+0
-72
lines changed

3 files changed

+0
-72
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,3 @@ ENV BUF_VERSION="1.57.0"
2121
RUN 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"

docker-compose.yaml

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff 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

8038
networks:
81-
postgres_pace:
82-
name: postgres_pace
83-
driver: bridge
8439
postgres:
8540
name: postgres
8641
driver: bridge

pace/application.yaml

Lines changed: 0 additions & 19 deletions
This file was deleted.

0 commit comments

Comments
 (0)