Add my homelab setup, converted to docker compose files

This commit is contained in:
2024-05-28 16:55:33 -03:00
commit eecd123c53
17 changed files with 314 additions and 0 deletions

16
blog/docker-compose.yml Executable file
View File

@ -0,0 +1,16 @@
version: "3.3"
services:
static-web-server:
image: joseluisq/static-web-server:latest
container_name: blog
ports:
- 8081:80
restart: unless-stopped
environment:
# Note: those envs are customizable but also optional
- SERVER_ROOT=/var/public
- SERVER_CONFIG_FILE=/etc/config.toml
volumes:
- /home/isaac/www/blog.shoebottom.ca/public:/var/public
- /docker/appdata/static-web-server/blog.toml:/etc/config.toml