Skip to content

Commit

Permalink
Merge pull request #226 from gitroomhq/ci-docker-fix-filename
Browse files Browse the repository at this point in the history
ci: docker fix filename
  • Loading branch information
jamesread authored Sep 10, 2024
2 parents 305115e + 7bee234 commit 89eae97
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions var/docker/docker-build.sh
Original file line number Diff line number Diff line change
@@ -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 .
Empty file modified var/docker/docker-create.sh
100644 → 100755
Empty file.
6 changes: 6 additions & 0 deletions var/docker/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 89eae97

Please sign in to comment.