samey 0.1.2

Sam's small image board
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
services:
  samey:
    image: badmanners/samey:latest
    build:
      context: .
    container_name: samey
    restart: unless-stopped
    ports:
      - 8080:3000
    volumes:
      - ./files:/files:rw
      - type: bind
        source: ./db.sqlite3
        target: /db.sqlite3