phase in initial steps of worker for runa
This commit is contained in:
parent
53dbaf5b52
commit
bde6eb5642
15 changed files with 3259 additions and 11 deletions
|
|
@ -0,0 +1,24 @@
|
|||
version: '3'
|
||||
services:
|
||||
synapse:
|
||||
image: matrixdotorg/synapse:${SYNAPSE_VERSION}
|
||||
ports:
|
||||
- "8008:8008/tcp"
|
||||
volumes:
|
||||
- /mnt/synapse_data:/data
|
||||
- ./config:/config
|
||||
ports:
|
||||
- "8008:8008/tcp"
|
||||
command:
|
||||
- run
|
||||
- --config-path=/config/homeserver.yaml
|
||||
# - --config-path=/config/generic_worker.yaml
|
||||
restart: always
|
||||
nginx:
|
||||
image: nginx:${NGINX_VERSION}
|
||||
ports:
|
||||
- "80:80/tcp"
|
||||
- "443:443/tcp"
|
||||
volumes:
|
||||
- ./nginx:/etc/nginx/conf.d
|
||||
- /ssl:/ssl
|
||||
Loading…
Add table
Add a link
Reference in a new issue