forked from MirrorHub/synapse
Merge pull request #3778 from z3ntu/patch-1
Fix build of Docker image with docker-compose
This commit is contained in:
commit
3149d55b7d
2 changed files with 5 additions and 2 deletions
1
changelog.d/3778.misc
Normal file
1
changelog.d/3778.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Fix build of Docker image with docker-compose
|
|
@ -6,9 +6,11 @@ version: '3'
|
||||||
services:
|
services:
|
||||||
|
|
||||||
synapse:
|
synapse:
|
||||||
build: ../..
|
build:
|
||||||
|
context: ../..
|
||||||
|
dockerfile: docker/Dockerfile
|
||||||
image: docker.io/matrixdotorg/synapse:latest
|
image: docker.io/matrixdotorg/synapse:latest
|
||||||
# Since snyapse does not retry to connect to the database, restart upon
|
# Since synapse does not retry to connect to the database, restart upon
|
||||||
# failure
|
# failure
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
# See the readme for a full documentation of the environment settings
|
# See the readme for a full documentation of the environment settings
|
||||||
|
|
Loading…
Reference in a new issue