file-uploader/docker-compose.dev.yml

24 lines
627 B
YAML
Raw Permalink Normal View History

2024-04-01 04:55:54 +00:00
services:
db:
image: mariadb
restart: always
environment:
MARIADB_DATABASE: file-uploader
MARIADB_ROOT_PASSWORD: development
ports:
- '3306:3306'
2024-08-29 10:24:27 +00:00
thumbor:
build:
dockerfile: thumbor.Dockerfile
restart: always
ports:
- '8888:80'
extra_hosts:
- 'host.docker.internal:host-gateway'
environment:
- 'SECURITY_KEY=development'
- 'ALLOW_UNSAFE_URL=False'
- 'STORAGE=thumbor.storages.no_storage'
- 'ENGINE=thumbor_video_engine.engines.video'
# - 'FILTERS=[thumbor_video_engine.filters.format,thumbor_video_engine.filters.still]'