-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
49 lines (43 loc) · 824 Bytes
/
Copy pathdocker-compose.dev.yml
File metadata and controls
49 lines (43 loc) · 824 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
43
44
45
46
47
48
49
services:
server:
image: localhost/next:latest
profiles: [full]
ports:
- 3000:3000
database:
image: "postgres:17-alpine"
ports:
- 15432:5432
environment:
POSTGRES_PASSWORD: password
pgadmin:
image: dpage/pgadmin4
ports:
- 15433:80
depends_on:
- database
environment:
PGADMIN_DEFAULT_EMAIL: mail@example.com
PGADMIN_DEFAULT_PASSWORD: password
adminer:
image: adminer:5-standalone
ports:
- 18080:8080
depends_on:
- database
environment:
ADMINER_DEFAULT_SERVER: database
mail:
image: maildev/maildev
ports:
- 11025:1025
- 11080:1080
ai:
image: ollama/ollama
profiles: [ai]
ports:
- 11434:11434
volumes:
- ollama:/root/.ollama
volumes:
ollama: