version: "3.9" services: webtrees: image: ghcr.io/nathanvaughn/webtrees:latest container_name: webtrees hostname: webtrees #security_opt: # - no-new-privileges:true ports: - "5495:80" network_mode: bridge volumes: - /volume1/docker/webtrees/data:/var/www/webtrees/data:rw - /volume1/docker/webtrees/themes:/var/www/webtrees/modules_v4:rw environment: BASE_URL: https://***mysite*** PRETTY_URLS: 1 LANG: ru WT_USER: sergey WT_PASS: ***MyPass*** WT_NAME: Sergey WT_EMAIL: yourown@email.com PHP_MEMORY_LIMIT: 8192M PHP_MAX_EXECUTION_TIME: 3600 PHP_POST_MAX_SIZE: 512M PHP_UPLOAD_MAX_FILE_SIZE: 512M DB_TYPE: sqlite DB_NAME: mydb HTTPS_REDIRECT: 0 HTTPS: 0 PUID: 1026 PGID: 100 restart: unless-stopped