diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4275e2d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +# Base +FROM oven/bun + +# Set Work Directory +WORKDIR /share +COPY . /share + +# Expose Ports +EXPOSE 1933 + +# Disable Astro Telemtry +RUN bunx astro telemetry disable + +# Install Packages +RUN bun i + +# Run +CMD bun start --host \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..5428576 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,8 @@ +version: "3" +services: + minpluto-share2fedi: + image: quay.io/sudovanilla/minpluto-share2fedi + # pull_policy: always + restart: unless-stopped + ports: + - "1933:4321" \ No newline at end of file