mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
19 lines
660 B
YAML
19 lines
660 B
YAML
version: '3'
|
|
services:
|
|
pigallery2:
|
|
entrypoint: [ "node", "./benchmark/index", "--config-path=/app/data/config/config.json", "--bm-config-path=/app/data/config/bm_config.json", "--Server-Database-dbFolder=/app/data/db/bm" ]
|
|
image: bpatrik/pigallery2:latest
|
|
container_name: pigallery2
|
|
environment:
|
|
- NODE_ENV=production
|
|
volumes:
|
|
- "./pigallery2/benchmark_config:/app/data/config" # CHANGE ME
|
|
- "db-benchmark-data:/app/data/db"
|
|
- "./pigallery2/images:/app/data/images:ro" # CHANGE ME, ':ro' mean read-only
|
|
- "./pigallery2/tmp:/app/data/tmp" # CHANGE ME
|
|
expose:
|
|
- "80"
|
|
|
|
volumes:
|
|
db-benchmark-data:
|