{"id":21413335,"url":"https://github.com/cauandzn/it_talent_hackathon1","last_synced_at":"2026-04-13T08:32:16.713Z","repository":{"id":236419411,"uuid":"792573106","full_name":"CauanDZN/it_talent_hackathon1","owner":"CauanDZN","description":"First IT Talent Program hackathon.","archived":false,"fork":false,"pushed_at":"2024-04-27T01:38:31.000Z","size":985,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-16T18:23:54.515Z","etag":null,"topics":["docker","docker-compose","yaml"],"latest_commit_sha":null,"homepage":"","language":null,"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/CauanDZN.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-04-27T00:52:45.000Z","updated_at":"2024-05-01T17:19:38.000Z","dependencies_parsed_at":"2024-04-27T02:24:35.666Z","dependency_job_id":"32576d14-ad84-4a61-a229-5b3f47e59010","html_url":"https://github.com/CauanDZN/it_talent_hackathon1","commit_stats":null,"previous_names":["cauandzn/it_talent_hackathon1"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CauanDZN/it_talent_hackathon1","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fit_talent_hackathon1","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fit_talent_hackathon1/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fit_talent_hackathon1/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fit_talent_hackathon1/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CauanDZN","download_url":"https://codeload.github.com/CauanDZN/it_talent_hackathon1/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CauanDZN%2Fit_talent_hackathon1/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31746101,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T06:26:45.479Z","status":"ssl_error","status_checked_at":"2026-04-13T06:26:44.645Z","response_time":93,"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":["docker","docker-compose","yaml"],"created_at":"2024-11-22T18:18:00.642Z","updated_at":"2026-04-13T08:32:16.697Z","avatar_url":"https://github.com/CauanDZN.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"## WordPress with MySQL\nThis example defines one of the basic setups for WordPress. More details on how this works can be found on the official [WordPress image page](https://hub.docker.com/_/wordpress).\n\n\nProject structure:\n```\n.\n├── compose.yaml\n└── README.md\n```\n\n[_compose.yaml_](compose.yaml)\n```\nservices:\n  db:\n    # We use a mariadb image which supports both amd64 \u0026 arm64 architecture\n    image: mariadb:10.6.4-focal\n    # If you really want to use MySQL, uncomment the following line\n    #image: mysql:8.0.27\n    ...\n  wordpress:\n    image: wordpress:latest\n    ports:\n      - 80:80\n    restart: always\n    ...\n```\n\nWhen deploying this setup, docker compose maps the WordPress container port 80 to\nport 80 of the host as specified in the compose file.\n\n\u003e ℹ️ **_INFO_**  \n\u003e For compatibility purpose between `AMD64` and `ARM64` architecture, we use a MariaDB as database instead of MySQL.  \n\u003e You still can use the MySQL image by uncommenting the following line in the Compose file   \n\u003e `#image: mysql:8.0.27`\n\n## Deploy with docker compose\n\n```\n$ docker compose up -d\nCreating network \"wordpress-mysql_default\" with the default driver\nCreating volume \"wordpress-mysql_db_data\" with default driver\n...\nCreating wordpress-mysql_db_1        ... done\nCreating wordpress-mysql_wordpress_1 ... done\n```\n\n\n## Expected result\n\nCheck containers are running and the port mapping:\n```\n$ docker ps\nCONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                 NAMES\n5fbb4181a069        wordpress:latest    \"docker-entrypoint.s…\"   35 seconds ago      Up 34 seconds       0.0.0.0:80-\u003e80/tcp    wordpress-mysql_wordpress_1\ne0884a8d444d        mysql:8.0.19        \"docker-entrypoint.s…\"   35 seconds ago      Up 34 seconds       3306/tcp, 33060/tcp   wordpress-mysql_db_1\n```\n\nNavigate to `http://localhost:80` in your web browser to access WordPress.\n\n![page](output.jpg)\n\nStop and remove the containers\n\n```\n$ docker compose down\n```\n\nTo remove all WordPress data, delete the named volumes by passing the `-v` parameter:\n```\n$ docker compose down -v\n```\n\n\nPrints:\n\n![Image 1](.github/image-1.png)\n![Image 2](.github/image-2.png)\n![Image 3](.github/image-3.png)\n![Image 4](.github/image-4.png)\n![Image 5](.github/image-5.png)\n![Image 6](.github/image-6.png)\n![Image 7](.github/image-7.png)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcauandzn%2Fit_talent_hackathon1","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcauandzn%2Fit_talent_hackathon1","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcauandzn%2Fit_talent_hackathon1/lists"}