fix entrypoint
This commit is contained in:
parent
2670c8f8f1
commit
e97496e09d
2 changed files with 3 additions and 2 deletions
|
@ -98,7 +98,7 @@ services:
|
||||||
# https://github.com/sorintlab/stolon/releases
|
# https://github.com/sorintlab/stolon/releases
|
||||||
STOLON_VERSION: 057389f7e484ee1d5c1e1a7020256020e7413c87
|
STOLON_VERSION: 057389f7e484ee1d5c1e1a7020256020e7413c87
|
||||||
context: ./postgres/build/postgres
|
context: ./postgres/build/postgres
|
||||||
image: superboum/amd64_postgres:v7
|
image: superboum/amd64_postgres:v8
|
||||||
|
|
||||||
backup-consul:
|
backup-consul:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -11,4 +11,5 @@ RUN make && chmod +x /stolon/bin/*
|
||||||
|
|
||||||
FROM postgres:13.3-buster
|
FROM postgres:13.3-buster
|
||||||
COPY --from=builder /stolon/bin /usr/local/bin
|
COPY --from=builder /stolon/bin /usr/local/bin
|
||||||
ENTRYPOINT ["/bin/bash"]
|
ENTRYPOINT []
|
||||||
|
CMD ["/bin/bash"]
|
||||||
|
|
Reference in a new issue