Happened if you've set TZ to non-UTC. Apparently astimezone and replace doesn't do the same thing even if tzinfo is None.
16 lines
317 B
YAML
16 lines
317 B
YAML
version: '3.8'
|
|
services:
|
|
spoolman:
|
|
image: donkie/spoolman:test
|
|
environment:
|
|
- SPOOLMAN_LOGGING_LEVEL=INFO
|
|
- TZ=Europe/Stockholm
|
|
tester:
|
|
image: donkie/spoolman-tester:latest
|
|
volumes:
|
|
- ./tests:/tester/tests
|
|
environment:
|
|
- DB_TYPE=sqlite
|
|
depends_on:
|
|
- spoolman
|