From e1353520402f24724f161d1cf286859642a793cf Mon Sep 17 00:00:00 2001 From: Kat Morgan Date: Wed, 15 Nov 2023 15:14:55 -0800 Subject: [PATCH] add hugo server port (#21) --- Dockerfile | 3 +++ team-docs/devcontainer.json | 1 + 2 files changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 94cc412..66a5e86 100644 --- a/Dockerfile +++ b/Dockerfile @@ -262,6 +262,9 @@ RUN set -ex \ WORKDIR /workspaces CMD ["/usr/bin/zsh"] +# Hugo Development Web Server Port for pulumi/pulumi-hugo +EXPOSE 1313 + # GHCR Labels LABEL org.opencontainers.image.licenses="APACHE2" LABEL org.opencontainers.image.source="https://github.com/pulumi/devcontainer" diff --git a/team-docs/devcontainer.json b/team-docs/devcontainer.json index 7ea49fb..3162362 100644 --- a/team-docs/devcontainer.json +++ b/team-docs/devcontainer.json @@ -56,5 +56,6 @@ }, "postCreateCommand": "git submodule update --init --recursive", "remoteUser": "vscode", + "forwardPorts": [1313], "runArgs": ["--network=host"] }