Skip to content

Docker

SWS has first-class Docker support. It provides a Scratch as well as the latest Alpine Linux Docker images.

OS/Arch

Only the following operating systems and architectures are supported.

  • linux/386
  • linux/amd64
  • linux/arm/v6
  • linux/arm/v7
  • linux/arm64

View all images on Docker Hub.

Run a container

To give the server a quick try then just run the following commands.

Tips

  • The SWS CLI arguments can be provided directly to the container or omitted as shown below.
  • A Docker volume like -v $HOME/my-public-dir:/public can be specified to overwrite the default root directory.

Run the scratch Docker image (just the binary)

docker run --rm -it -p 8787:80 joseluisq/static-web-server:2 -g info

Or run the Alpine Docker image variant

docker run --rm -it -p 8787:80 joseluisq/static-web-server:2-alpine -g info

Dockerfile

SWS Docker images can be extended as needed.

Extending the scratch Docker image (just the binary)

FROM joseluisq/static-web-server:2
# do stuff...

Or the Alpine Docker image variant

FROM joseluisq/static-web-server:2-alpine
# do stuff...

Docker Compose

Below a Docker Compose example using the Traefik Proxy.

version: "3.3"

services:
  web:
    image: joseluisq/static-web-server:2
    environment:
      # Note: those envs are customizable but also optional
      - SERVER_HOST=127.0.0.1
      - SERVER_PORT=80
      - SERVER_ROOT=/public
    volumes:
      - ./some-dir-path:/public
    labels:
      - "traefik.enable=true"
      - "traefik.frontend.entryPoints=https"
      - "traefik.backend=localhost_dev"
      - "traefik.frontend.rule=Host:localhost.dev"
      - "traefik.port=80"
    networks:
      - traefik_net

networks:
  traefik_net:
    external: true

Last update: 2023-04-08