Skip to content

Commit

Permalink
Fix bug in docker-compose settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kekaadrenalin committed Jun 28, 2024
1 parent 75d44ac commit 8b25a20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ RUN mkdir /data
FROM scratch

ENV PATH /bin
COPY --from=builder /data /data
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY --from=builder /dockhook/dockhook /dockhook
COPY --from=builder /data /dockhook/data

EXPOSE 8080

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ Here is the Docker Compose file:
image: kekaadrenalin/dockhook:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./data/users.yml:/dockhook/data/users.yml:rw
- ./data/webhooks.yml:/dockhook/data/webhooks.yml:rw
- ./data/users.yml:/data/users.yml:rw
- ./data/webhooks.yml:/data/webhooks.yml:rw
... or ...
- ./some_data/:/dockhook/data/
- ./some_data/:/data/
ports:
- 8888:8080

Expand Down

0 comments on commit 8b25a20

Please sign in to comment.