random-image-server 0.2.0

A simple image server that serves random images from a preconfigured list of paths and URLs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
services:
  random-image-server:
    build:
      context: ./
      dockerfile: ./Dockerfile
    ports:
      - 8080:8080
    expose:
      - 8080
    volumes:
      # the config file is mounted to the container
      - ./config.toml:/etc/random-image-server/config.toml
      # Mount all the local images (and directories) configured in your config file to the container
      - ./assets:/path/to/image/directory