{"id":18056235,"url":"https://github.com/ferror/sylius-image","last_synced_at":"2026-03-19T03:04:06.433Z","repository":{"id":39753823,"uuid":"444219419","full_name":"Ferror/sylius-image","owner":"Ferror","description":null,"archived":false,"fork":false,"pushed_at":"2022-08-03T09:31:13.000Z","size":39,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-15T23:03:49.529Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ferror.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-01-03T22:42:06.000Z","updated_at":"2022-04-10T18:14:03.000Z","dependencies_parsed_at":"2022-08-09T15:25:25.890Z","dependency_job_id":null,"html_url":"https://github.com/Ferror/sylius-image","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ferror/sylius-image","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ferror%2Fsylius-image","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ferror%2Fsylius-image/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ferror%2Fsylius-image/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ferror%2Fsylius-image/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ferror","download_url":"https://codeload.github.com/Ferror/sylius-image/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ferror%2Fsylius-image/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29167038,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T14:37:12.680Z","status":"ssl_error","status_checked_at":"2026-02-06T14:36:22.973Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-31T01:14:27.125Z","updated_at":"2026-02-06T15:35:54.499Z","avatar_url":"https://github.com/Ferror.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# sylius-image\n\n## Docker sizes\n\n| Image             | Size                                                                                |\n|-------------------|-------------------------------------------------------------------------------------|\n| 1.11              | ![Docker Hub](https://badgen.net/docker/size/ferror/sylius-image/1.11)              |\n| 1.11-headless     | ![Docker Hub](https://badgen.net/docker/size/ferror/sylius-image/1.11-headless)     |\n| 1.11-experimental | ![Docker Hub](https://badgen.net/docker/size/ferror/sylius-image/1.11-experimental) |\n| 1.11-roadrunner   | ![Docker Hub](https://badgen.net/docker/size/ferror/sylius-image/1.11-roadrunner)   |\n\n## Example usage\n### Production environment\n#### Dockerfile\n\n```dockerfile\nFROM ferror/sylius-image:1.11\n\nCOPY . /app\n\nRUN composer install --no-scripts\nRUN php bin/console cache:warmup --no-debug --env=prod\nRUN yarn install --pure-lockfile \u0026\u0026 yarn build\n```\n\nIn case of memory exhaustion you can increase PHP `memory_limit` config or add `--no-optional-warmers` flag\n```dockerfile\nRUN php bin/console cache:warmup --no-debug --env=prod --no-optional-warmers\n```\n\n#### Kubernetes\n[https://github.com/ferror/sylius-kubernetes](https://github.com/ferror/sylius-kubernetes)\n\n### Development environment\n#### Traefik config file\n\n```yaml\nlog:\n    level: ERROR\n\napi:\n    insecure: true\n\nentrypoints:\n    web:\n        address: :80\n\nproviders:\n    docker:\n        exposedByDefault: true\n        # https://masterminds.github.io/sprig/strings.html\n        # Please define your own routing rules based on local domain\n        defaultRule: \"Host(`{{ .Name }}.domain.localhost`)\"\n```\n\n#### Docker Compose\n```yaml\nservices:\n    traefik:\n        image: traefik:2.6\n        ports:\n            - 80:80     # HTTP\n            - 443:443   # HTTPS\n            - 8080:8080 # Traefik UI dashboard\n        volumes:\n            - ./.docker/traefik.yaml:/etc/traefik/traefik.yaml\n            - /var/run/docker.sock:/var/run/docker.sock:ro\n        networks:\n            - sylius\n\n    app:\n        image: ferror/sylius-image:1.11\n        volumes:\n            - ./:/app:delegated\n        depends_on:\n            - traefik\n            - mysql\n            - postgres\n        networks:\n            - sylius\n\n    mysql:\n        image: mysql:5.7\n        platform: linux/amd64 # mysql does not support arm images :(\n        environment:\n            - MYSQL_ROOT_PASSWORD=mysql\n# You may want to initialize mysql server with some dump files\n#        volumes:\n#            - ./.docker/dev/mysql:/docker-entrypoint-initdb.d:delegated\n        ports:\n            - \"3306:3306\"\n        depends_on:\n            - traefik\n        networks:\n            - sylius\n\n    postgres:\n        image: postgres:13\n        environment:\n            - POSTGRES_USER=root\n            - POSTGRES_PASSWORD=postgres\n# You may want to initialize postgres server with some dump files\n#        volumes:\n#            - ./.docker/dev/postgres:/docker-entrypoint-initdb.d:delegated\n        ports:\n            - 5432:5432\n        depends_on:\n            - traefik\n        networks:\n            - sylius\n\nnetworks:\n    sylius:\n        driver: bridge\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferror%2Fsylius-image","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fferror%2Fsylius-image","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferror%2Fsylius-image/lists"}