Skip to content

Commit f4c88d3

Browse files
authored
Merge pull request coollabsio#3763 from coollabsio/new-services
Feat: Service fixes and new services
2 parents 9c2b24b + 2805681 commit f4c88d3

19 files changed

+309
-30
lines changed

public/svgs/dozzle.svg

Lines changed: 10 additions & 0 deletions
Loading

public/svgs/easyappointments.png

24.7 KB
Loading

public/svgs/libreoffice.svg

Lines changed: 1 addition & 0 deletions
Loading

public/svgs/organizr.png

13.6 KB
Loading

public/svgs/soketi.jpeg

17.8 KB
Loading

public/svgs/soketi.png

7.61 KB
Loading

public/svgs/supertokens.svg

Lines changed: 17 additions & 0 deletions
Loading

templates/compose/authentik.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55
# port: 9000
66

77
services:
8-
98
authentik-server:
10-
image: ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.2.2}
9+
image: ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.8.0}
1110
restart: unless-stopped
1211
command: server
1312
environment:
@@ -36,7 +35,7 @@ services:
3635
redis:
3736
condition: service_healthy
3837
authentik-worker:
39-
image: ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.2.2}
38+
image: ghcr.io/goauthentik/server:${AUTHENTIK_TAG:-2024.8.0}
4039
restart: unless-stopped
4140
command: worker
4241
environment:
@@ -73,7 +72,7 @@ services:
7372
redis:
7473
condition: service_healthy
7574
postgresql:
76-
image: docker.io/library/postgres:12-alpine
75+
image: docker.io/library/postgres:16-alpine
7776
restart: unless-stopped
7877
healthcheck:
7978
test: ["CMD-SHELL", "pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
@@ -85,7 +84,7 @@ services:
8584
environment:
8685
- POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRESQL}
8786
- POSTGRES_USER=${SERVICE_USER_POSTGRESQL}
88-
- POSTGRES_DB=${POSTGRES_DB:-authentik}
87+
- POSTGRES_DB=authentik
8988
redis:
9089
image: docker.io/library/redis:alpine
9190
command: --save 60 1 --loglevel warning
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# ignore: true
2+
# documentation: https://dozzle.dev/
3+
# slogan: Dozzle is a simple and lightweight web UI for Docker logs.
4+
# tags: dozzle,docker,logs,web-ui
5+
# logo: svgs/dozzle.svg
6+
# port: 8080
7+
8+
services:
9+
dozzle:
10+
image: amir20/dozzle:latest
11+
environment:
12+
- SERVICE_FQDN_DOZZLE_8080
13+
- DOZZLE_AUTH_PROVIDER=simple
14+
volumes:
15+
- /var/run/docker.sock:/var/run/docker.sock
16+
- type: bind
17+
source: /data/users.yml
18+
target: /data/users.yml
19+
content: |
20+
users:
21+
# "admin" here is username
22+
admin:
23+
name: "Admin"
24+
# Just sha-256 which can be computed with "echo -n password | shasum -a 256"
25+
password: "5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8"
26+
27+
healthcheck:
28+
test: ["CMD", "/dozzle", "healthcheck"]
29+
interval: 3s
30+
timeout: 30s
31+
retries: 5
32+
start_period: 30s

templates/compose/dozzle.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# documentation: https://dozzle.dev/guide/getting-started#running-with-docker
2+
# slogan: Dozzle is a simple and lightweight web UI for Docker logs.
3+
# tags: dozzle,docker,logs,web-ui
4+
# logo: svgs/dozzle.svg
5+
# port: 8080
6+
7+
services:
8+
dozzle:
9+
image: amir20/dozzle:latest
10+
environment:
11+
- SERVICE_FQDN_DOZZLE_8080
12+
volumes:
13+
- /var/run/docker.sock:/var/run/docker.sock
14+
healthcheck:
15+
test: ["CMD", "/dozzle", "healthcheck"]
16+
interval: 3s
17+
timeout: 30s
18+
retries: 5
19+
start_period: 30s

0 commit comments

Comments
 (0)