bugfix: Docker filename and supervisorctl fix
This commit is contained in:
parent
f6daecacd4
commit
3b72e01377
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
docker rmi localhost/postiz || true
|
||||
docker build --target dist -t localhost/postiz -f Dockerfile .
|
||||
docker build --target devcontainer -t localhost/postiz-devcontainer -f Dockerfile .
|
||||
docker build --target dist -t localhost/postiz -f Dockerfile.dev .
|
||||
docker build --target devcontainer -t localhost/postiz-devcontainer -f Dockerfile.dev .
|
||||
|
|
|
|||
|
|
@ -8,3 +8,9 @@ file=/run/supervisord.sock
|
|||
|
||||
[include]
|
||||
files = /etc/supervisor.d/*.conf
|
||||
|
||||
[rpcinterface:supervisor]
|
||||
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
|
||||
|
||||
[supervisorctl]
|
||||
serverurl=unix:///run/supervisord.sock
|
||||
|
|
|
|||
Loading…
Reference in New Issue