Merge pull request #226 from gitroomhq/ci-docker-fix-filename
ci: docker fix filename
This commit is contained in:
commit
89eae97a84
|
|
@ -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