Add my homelab setup, converted to docker compose files
This commit is contained in:
16
blog/docker-compose.yml
Executable file
16
blog/docker-compose.yml
Executable 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
|
Reference in New Issue
Block a user