forked from aptabase/aptabase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (39 loc) · 884 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (39 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
version: "3"
services:
pgdev:
container_name: aptabase_pgdev
restart: always
image: postgres:15
volumes:
- pgdev-data:/var/lib/postgresql/data
ports:
- "5432:5432"
environment:
POSTGRES_USER: aptabase
POSTGRES_PASSWORD: aptabase_pw
clickhousedev:
container_name: aptabase_clickhousedev
image: clickhouse/clickhouse-server:23.8.4.69
restart: always
ports:
- "8123:8123"
volumes:
- clickhousedev-data:/var/lib/clickhouse
environment:
CLICKHOUSE_USER: aptabase
CLICKHOUSE_PASSWORD: aptabase_pw
ulimits:
nofile:
soft: 262144
hard: 262144
mailcatcher:
container_name: aptabase_mailcatcher
image: dockage/mailcatcher:0.8.2
ports:
- 1025:1025
- 1080:1080
volumes:
pgdev-data:
driver: local
clickhousedev-data:
driver: local