kapsikkum-unmanic – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 ################
2 # Test environment Docker Compose file
3 #
4 # This compose file is only good for automated testing.
5 #
6 # docker exec --workdir=/app unmanic-testenv pytest --log-cli-level=INFO
7 #
8  
9  
10 version: '2'
11  
12 services:
13 unmanic-testenv:
14 container_name: unmanic-testenv
15 image: josh5/unmanic:latest
16 ports:
17 - 8888:8888
18 environment:
19 - PUID=1000
20 - PGID=1000
21 - DEBUGGING=false
22 - NUMBER_OF_WORKERS=2
23 - SCHEDULE_FULL_SCAN_MINUTES=10
24 - RUN_FULL_SCAN_ON_START=false
25 - TZ=Pacific/Auckland
26 volumes:
27 - ../tests/tmp/cache:/tmp/unmanic
28 - ../tests/tmp/library:/library
29 - ../tests:/app/tests
30 - ../:/app
31 # Uncomment for debugging of tests within the docker container
32 # Note that some tests are setup to only succeed with a particular configuration
33 # and modifying the configuration may cause tests to fail unexpectedly.
34 # - ../tests/tmp/config:/config