-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the initial configuration of the image
- Loading branch information
Cesar Perez
committed
Aug 14, 2017
1 parent
35015c8
commit be93ee6
Showing
1 changed file
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Google Cloud Pub/Sub Documentation | ||
# https://cloud.google.com/pubsub/docs/ | ||
|
||
FROM google/cloud-sdk | ||
LABEL maintainer="Cesar Perez <[email protected]>" \ | ||
version="0.1" \ | ||
description="Google Cloud Pub/Sub Emulator" | ||
|
||
EXPOSE 8538 | ||
|
||
VOLUME /data | ||
|
||
ENTRYPOINT ["gcloud", "beta", "emulators", "pubsub"] | ||
CMD ["start", "--host-port=127.0.0.1:8538", "--data-dir=/data"] |