Skip to content

Commit e85d8d4

Browse files
authored
Hawk docker updates (#1055)
1. Minor updates with respect of hawk docker setup.
1 parent c67aa45 commit e85d8d4

5 files changed

+19
-18
lines changed

Dockerfile.dev.hawk

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ RUN apt-get update && apt-get install -y \
1616
wget
1717

1818
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
19-
ENV PATH "/root/.cargo/bin:${PATH}"
20-
ENV RUSTUP_HOME "/root/.rustup"
21-
ENV CARGO_HOME "/root/.cargo"
19+
ENV PATH="/root/.cargo/bin:${PATH}"
20+
ENV RUSTUP_HOME="/root/.rustup"
21+
ENV CARGO_HOME="/root/.cargo"
2222
RUN rustup toolchain install nightly-2024-07-10
2323
RUN rustup default nightly-2024-07-10
2424
RUN rustup component add cargo

Dockerfile.hawk

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ RUN apt-get update && apt-get install -y \
1616
wget
1717

1818
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
19-
ENV PATH "/root/.cargo/bin:${PATH}"
20-
ENV RUSTUP_HOME "/root/.rustup"
21-
ENV CARGO_HOME "/root/.cargo"
19+
ENV PATH="/root/.cargo/bin:${PATH}"
20+
ENV RUSTUP_HOME="/root/.rustup"
21+
ENV CARGO_HOME="/root/.cargo"
2222
RUN rustup toolchain install nightly-2024-07-10
2323
RUN rustup default nightly-2024-07-10
2424
RUN rustup component add cargo

docker-compose.dev.yaml

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ services:
33
image: postgres
44
ports:
55
- "5432:5432"
6+
user: "postgres"
67
environment:
78
POSTGRES_USER: "postgres"
89
POSTGRES_PASSWORD: "postgres"
910
volumes:
10-
- ./scripts/init-db.sh:/docker-entrypoint-initdb.d/init-db.sh
11+
- ./scripts/init-db-pgres.sql:/docker-entrypoint-initdb.d/init-db-pgres.sql
1112
healthcheck:
1213
test: ["CMD-SHELL", "pg_isready", "-d", "db_prod"]
1314
interval: 10s
@@ -17,6 +18,9 @@ services:
1718

1819
localstack:
1920
image: localstack/localstack
21+
depends_on:
22+
dev_db:
23+
condition: service_healthy
2024
ports:
2125
- "127.0.0.1:4566:4566"
2226
- "127.0.0.1:4571:4571"
@@ -28,12 +32,12 @@ services:
2832
healthcheck:
2933
test: >-
3034
sleep 10 &&
31-
awslocal sqs list-queues &&
32-
awslocal s3 ls &&
35+
awslocal sqs list-queues &&
36+
awslocal s3 ls &&
3337
awslocal kms list-keys
3438
interval: 5s
3539
timeout: 25s
3640
retries: 10
3741

3842
volumes:
39-
- ./scripts/init-localstack.sh:/etc/localstack/init/ready.d/init-localstack.sh
43+
- ./scripts/init-localstack.sh:/etc/localstack/init/ready.d/init-localstack.sh

scripts/init-db-pgres.sql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
CREATE DATABASE "SMPC_dev_0";
2+
3+
CREATE DATABASE "SMPC_dev_1";
4+
5+
CREATE DATABASE "SMPC_dev_2";

scripts/init-db.sh

-8
This file was deleted.

0 commit comments

Comments
 (0)