Skip to content

Commit da9be02

Browse files
committedJan 3, 2023
Fix aidbox licence variable bug
1 parent e3395e0 commit da9be02

File tree

4 files changed

+3
-2
lines changed

4 files changed

+3
-2
lines changed
 

‎.env.tpl

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
PYTHON=3.11
2+
AIDBOX_LICENSE=

‎.github/workflows/build.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
- name: Upgrade pip
2828
run: |
2929
python -m pip install --upgrade pip
30-
- run: docker kill `docker ps -q` || exit 0
3130
- name: Run tests
3231
run: ./run_test.sh
3332
shell: bash

‎docker-compose.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ services:
2525
PGUSER: postgres
2626
PGPASSWORD: postgres
2727
AIDBOX_CONFIG: /var/config/config.edn
28+
AIDBOX_LICENSE: ${AIDBOX_LICENSE}
2829
volumes:
2930
- ./config:/var/config
3031
devbox-healthcheck:

‎run_test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
docker-compose -f docker-compose.yaml up --exit-code-from app app
3+
docker compose -f docker-compose.yaml up --exit-code-from app app

0 commit comments

Comments
 (0)
Please sign in to comment.