Skip to content

Commit 83a3b18

Browse files
committed
ready for 1.4.1
1 parent 7241960 commit 83a3b18

File tree

3 files changed

+13
-24
lines changed

3 files changed

+13
-24
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,6 @@ jobs:
2121
uses: CultureHQ/actions-yarn@master
2222
with:
2323
args: --cwd services/bot install
24-
- name: Build & push containers
25-
run: |
26-
# Setup Build
27-
docker login -u publisher -p ${DOCKER_TOKEN} ghcr.io
28-
QUTEX_VERSION=1.4.0
29-
30-
# Build all containers
31-
docker compose -f docker-compose.build.yml build
32-
docker compose -f docker-compose.build.yml push
33-
env:
34-
DOCKER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3524
lint:
3625
needs: setup
3726
runs-on: ubuntu-latest

docker-compose.build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
version: '3.9'
22
services:
33
nginx:
4-
image: ghcr.io/amthorn/qutex/qutex/qutex_nginx:${QUTEX_VERSION:-latest}
4+
image: ghcr.io/amthorn/qutex/qutex_nginx:${QUTEX_VERSION:-latest}
55
build:
66
context: services/nginx
77
bot:
8-
image: ghcr.io/amthorn/qutex/qutex/qutex_bot:${QUTEX_VERSION:-latest}
8+
image: ghcr.io/amthorn/qutex/qutex_bot:${QUTEX_VERSION:-latest}
99
build:
1010
context: ./services/bot
1111
ui:
12-
image: ghcr.io/amthorn/qutex/qutex/qutex_ui:${QUTEX_VERSION:-latest}
12+
image: ghcr.io/amthorn/qutex/qutex_ui:${QUTEX_VERSION:-latest}
1313
build:
1414
context: services/ui/
1515
projects:
16-
image: ghcr.io/amthorn/qutex/qutex/qutex_projects:${QUTEX_VERSION:-latest}
16+
image: ghcr.io/amthorn/qutex/qutex_projects:${QUTEX_VERSION:-latest}
1717
build:
1818
context: .
1919
dockerfile: services/_api_service_template/Dockerfile
2020
args:
2121
SERVICE_PREFIX: projects
2222
users:
23-
image: ghcr.io/amthorn/qutex/qutex/qutex_users:${QUTEX_VERSION:-latest}
23+
image: ghcr.io/amthorn/qutex/qutex_users:${QUTEX_VERSION:-latest}
2424
build:
2525
context: .
2626
dockerfile: services/_api_service_template/Dockerfile
2727
args:
2828
SERVICE_PREFIX: users
2929
auth:
30-
image: ghcr.io/amthorn/qutex/qutex/qutex_auth:${QUTEX_VERSION:-latest}
30+
image: ghcr.io/amthorn/qutex/qutex_auth:${QUTEX_VERSION:-latest}
3131
build:
3232
context: .
3333
dockerfile: services/_api_service_template/Dockerfile

docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ x-common: &common
88
services:
99
nginx:
1010
<<: *common
11-
image: ghcr.io/amthorn/qutex/qutex/qutex_nginx:${QUTEX_VERSION:-latest}
11+
image: ghcr.io/amthorn/qutex/qutex_nginx:${QUTEX_VERSION:-latest}
1212
depends_on:
1313
- web
1414
- auth
@@ -17,7 +17,7 @@ services:
1717
- 80:80
1818
bot:
1919
<<: *common
20-
image: ghcr.io/amthorn/qutex/qutex/qutex_bot:${QUTEX_VERSION:-latest}
20+
image: ghcr.io/amthorn/qutex/qutex_bot:${QUTEX_VERSION:-latest}
2121
depends_on:
2222
- mongo
2323
ports:
@@ -29,7 +29,7 @@ services:
2929
- mongoPassword
3030
ui:
3131
<<: *common
32-
image: ghcr.io/amthorn/qutex/qutex/qutex_ui:${QUTEX_VERSION:-latest}
32+
image: ghcr.io/amthorn/qutex/qutex_ui:${QUTEX_VERSION:-latest}
3333
depends_on:
3434
- mongo
3535
- bot
@@ -38,23 +38,23 @@ services:
3838
context: services/ui/
3939
projects:
4040
<<: *common
41-
image: ghcr.io/amthorn/qutex/qutex/qutex_projects:${QUTEX_VERSION:-latest}
41+
image: ghcr.io/amthorn/qutex/qutex_projects:${QUTEX_VERSION:-latest}
4242
depends_on:
4343
- mongo
4444
- auth
4545
secrets:
4646
- mongoPassword
4747
users:
4848
<<: *common
49-
image: ghcr.io/amthorn/qutex/qutex/qutex_users:${QUTEX_VERSION:-latest}
49+
image: ghcr.io/amthorn/qutex/qutex_users:${QUTEX_VERSION:-latest}
5050
depends_on:
5151
- auth
5252
secrets:
5353
- token
5454
- mongoPassword
5555
auth:
5656
<<: *common
57-
image: ghcr.io/amthorn/qutex/qutex/qutex_auth:${QUTEX_VERSION:-latest}
57+
image: ghcr.io/amthorn/qutex/qutex_auth:${QUTEX_VERSION:-latest}
5858
depends_on:
5959
- redis
6060
- mongo
@@ -68,7 +68,7 @@ services:
6868
migrate:
6969
depends_on:
7070
- mongo
71-
image: ghcr.io/amthorn/qutex/qutex/qutex_bot:${QUTEX_VERSION:-latest}
71+
image: ghcr.io/amthorn/qutex/qutex_bot:${QUTEX_VERSION:-latest}
7272
env_file: *env_files
7373
secrets:
7474
- mongoPassword

0 commit comments

Comments
 (0)