Last active
January 20, 2021 10:28
-
-
Save ashmore11/a57b802887ef1f613e7c41d48be3782b to your computer and use it in GitHub Desktop.
Next Strapi Cloud Run (docker compose cms)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.7" | |
services: | |
next-strapi-cloud-run-mysql: | |
image: mysql:5.7 | |
container_name: next-strapi-cloud-run-mysql | |
environment: | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: cms | |
ports: | |
- "3308:3306" | |
next-strapi-cloud-run-cms: | |
image: strapi/strapi | |
container_name: next-strapi-cloud-run-cms | |
working_dir: /usr/src/cms | |
command: sh -c "yarn; yarn develop" | |
ports: | |
- "1337:1337" | |
depends_on: | |
- next-strapi-cloud-run-mysql | |
volumes: | |
- ./cms:/usr/src/cms | |
- /usr/src/cms/node_modules | |
environment: | |
- NODE_ENV=development | |
- DB_HOST=next-strapi-cloud-run-mysql | |
- DB_PORT=3306 | |
- DB_NAME=cms | |
- DB_USERNAME=root | |
- DB_PASSWORD=password |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment