Update nginx-golang-mysql dockercompose (#141)

* Add missing expose field to docker compose files (#124)

Signed-off-by: javi <javier@okteto.com>
Signed-off-by: Alvaro Carpio <alvanxp@outlook.com>

* add MySql healthcheck to dependency for backend

Signed-off-by: Alvaro Carpio <alvanxp@outlook.com>

Co-authored-by: Javier López Barba <j.lopezbarb@gmail.com>
This commit is contained in:
Alvaro Carpio 2021-05-21 11:10:59 -05:00 committed by GitHub
parent 744ed86c55
commit c8370c40c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -4,12 +4,18 @@ services:
build: backend build: backend
secrets: secrets:
- db-password - db-password
depends_on: depends_on:
- db db:
condition: service_healthy
db: db:
image: mysql:8.0.19 image: mysql:8.0.19
command: '--default-authentication-plugin=mysql_native_password' command: '--default-authentication-plugin=mysql_native_password'
restart: always restart: always
healthcheck:
test: ["CMD", "mysqladmin", "ping", "-h", "127.0.0.1", "--silent"]
interval: 3s
retries: 5
start_period: 30s
secrets: secrets:
- db-password - db-password
volumes: volumes: