Compare commits

...

3 Commits
k8s ... main

Author SHA1 Message Date
Michael Scalzetti
05dfd7068d it works now :) 2023-11-08 18:58:03 -05:00
Michael Scalzetti
26cf9099ae idk what im doing 2023-11-08 18:47:36 -05:00
John Doe
a29df509b6 changed to be dependant on k8s branch builds, keeps the blog the same between the 2 branches 2023-02-13 18:14:14 -05:00
2 changed files with 3 additions and 13 deletions

View File

@ -1,12 +0,0 @@
FROM rust:latest
RUN cargo install mdbook
RUN apt-get update && apt-get install -y vim git
RUN mkdir -p /mdbook
WORKDIR /mdbook
EXPOSE 3000
CMD mdbook serve -n 0.0.0.0

View File

@ -1,9 +1,11 @@
services: services:
mdbook: mdbook:
build: . image: peaceiris/mdbook
container_name: mdbook container_name: mdbook
volumes: volumes:
- "./blog:/mdbook" - "./blog:/mdbook"
ports: ports:
- 80:3000 - 80:3000
restart: always restart: always
entrypoint: ['/usr/bin/mdbook', 'serve', '/mdbook', '-n', '0.0.0.0']