Skip to content

Commit 33e5511

Browse files
authored
Update docker-compose.yml
Added new env vars, updated images and hoping I figure out github image builder xD
1 parent 4623abb commit 33e5511

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

docker-compose.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
aptabase:
33
container_name: aptabase_app
4-
image: ghcr.io/robert27/aptabase:authentik
4+
image: ghcr.io/arunabh-hazarika/aptabase:authentik
55

66
restart: always
77
depends_on:
@@ -16,10 +16,13 @@ services:
1616
CLICKHOUSE_URL: Host=aptabase_events_db;Port=8123;Username=aptabase;Password=sTr0NGp4ssw0rd
1717
OAUTH_AUTHENTIK_CLIENT_ID: abcdefghijklmnopqrstuvwxyz # replace with your client id
1818
OAUTH_AUTHENTIK_CLIENT_SECRET: abcdefghijklmnopqrstuvwxyz # replace with your client secret
19+
OAUTH_AUTHENTIK_AUTHORIZE_URL: https://authentik.example.com/application/o/authorize/ # replace with your Authorize URL
20+
OAUTH_AUTHENTIK_TOKEN_URL: https://authentik.example.com/application/o/token/ # replace with your Token URL
21+
OAUTH_AUTHENTIK_USERINFO_URL: https://authentik.example.com/application/o/userinfo/ # replace with your Userinfo URL
1922

2023
aptabase_db:
2124
container_name: aptabase_db
22-
image: postgres:15-alpine
25+
image: postgres:16
2326
restart: always
2427
volumes:
2528
- db-data:/var/lib/postgresql/data
@@ -29,7 +32,7 @@ services:
2932

3033
aptabase_events_db:
3134
container_name: aptabase_events_db
32-
image: clickhouse/clickhouse-server:23.8.4.69-alpine
35+
image: clickhouse/clickhouse-server:23.10.4.25
3336
restart: always
3437
volumes:
3538
- events-db-data:/var/lib/clickhouse

0 commit comments

Comments
 (0)