16 lines
455 B
YAML
Executable File
16 lines
455 B
YAML
Executable File
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:
|
|
- /docker/appdata/blog/public:/var/public
|
|
- /docker/appdata/static-web-server/blog.toml:/etc/config.toml |