-
Notifications
You must be signed in to change notification settings - Fork 7
/
docker-compose.yml
30 lines (29 loc) · 1.04 KB
/
docker-compose.yml
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
version: '3'
services:
php-solid-server:
build:
context: .
container_name: php-solid-server
environment:
# During development it can be useful to set the ENVIRONMENT to "development"
# in order to see more details about the errors.
# ENVIRONMENT: development
USERNAME: alice
PASSWORD: alice123
# To change the root from https://localhost to something sensible , set SERVER_ROOT, for example:
# SERVER_ROOT: https://nextcloud.local
# to run in HTTP mode, set PROXY_MODE
# PROXY_MODE: true
PUBSUB_URL: http://pubsub:8080
ports:
- 80:80
- 443:443
volumes:
- .:/app/
# @TODO: The storage directory should be mounted separately
# as it really _should_ live outside the code directory
pubsub:
build:
context: https://github.com/pdsinterop/php-solid-pubsub-server.git#main
ports:
- 8080:8080