-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
executable file
·35 lines (35 loc) · 948 Bytes
/
docker-compose.yml
File metadata and controls
executable file
·35 lines (35 loc) · 948 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
version: '3'
services:
solid:
build:
context: .
dockerfile: ./docker/solid.Dockerfile
ports:
- 443:443
volumes:
- ./data/keys:/opt/solid/keys
- ./data/db:/opt/solid/db
- ./data/pods:/opt/solid/pods
- ./data/profiles:/opt/solid/profiles
pubsub:
build:
context: https://github.com/pdsinterop/php-solid-pubsub-server.git#main
ports:
- 8080:8080
expose:
- 8080
depends_on:
- solid
mailpit:
image: axllent/mailpit
environment:
MP_MAX_MESSAGES: 5000
MP_DATABASE: /data/mailpit.db
MP_SMTP_AUTH_ACCEPT_ANY: 1
MP_SMTP_AUTH_ALLOW_INSECURE: 1
restart: unless-stopped
ports:
- 8025:8025
- 2525:1025
volumes:
- ./data/mailpit-data:/data