Skip to content

Commit ab7c424

Browse files
committed
Add container name to docker-compose.yml
1 parent 1d71ee9 commit ab7c424

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docker-compose.yml

+4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,15 @@ services:
33
php-solid-server:
44
build:
55
context: .
6+
container_name: php-solid-server
67
environment:
78
# During development it can be useful to set the ENVIRONMENT to "development"
89
# in order to see more details about the errors.
910
# ENVIRONMENT: development
1011
USERNAME: alice
1112
PASSWORD: alice123
13+
# To change the root from https://localhost to something sensible , set SERVER_ROOT, for example:
14+
# SERVER_ROOT: https://nextcloud.local
1215
# to run in HTTP mode, set PROXY_MODE
1316
# PROXY_MODE: true
1417
PUBSUB_URL: http://pubsub:8080
@@ -19,6 +22,7 @@ services:
1922
- .:/app/
2023
# @TODO: The storage directory should be mounted separately
2124
# as it really _should_ live outside the code directory
25+
2226
pubsub:
2327
build:
2428
context: https://github.com/pdsinterop/php-solid-pubsub-server.git#main

0 commit comments

Comments
 (0)