Skip to content

Commit cee6990

Browse files
Antonio StanoAntonio Stano
authored andcommitted
fix docker local startup on arm: copy globs and grafana default
1 parent 9a9e140 commit cee6990

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

aware-fund/services/analytics/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY requirements.txt .
1212
RUN pip install --no-cache-dir -r requirements.txt
1313

1414
# Copy source code
15-
COPY *.py .
15+
COPY *.py ./
1616
COPY ml/ ./ml/
1717
COPY notifications/ ./notifications/
1818

aware-fund/services/api/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ COPY requirements.txt .
77
RUN pip install --no-cache-dir -r requirements.txt
88

99
# Copy source code
10-
COPY *.py .
10+
COPY *.py ./
1111

1212
# Environment defaults
1313
ENV CLICKHOUSE_HOST=clickhouse

docker-compose.local.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ services:
232232
- prometheus
233233
environment:
234234
GF_SECURITY_ADMIN_USER: ${GRAFANA_ADMIN_USER:-admin}
235-
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_ADMIN_PASSWORD:?set GRAFANA_ADMIN_PASSWORD for local monitoring}
235+
GF_SECURITY_ADMIN_PASSWORD: ${GRAFANA_ADMIN_PASSWORD:-admin}
236236
GF_USERS_ALLOW_SIGN_UP: "false"
237237
ports:
238238
- "3001:3000"

0 commit comments

Comments
 (0)