MySQLのサンプル
services:
db:
image: mariadb
restart: always
environment:
MARIADB_ROOT_PASSWORD: my#password
MARIADB_DATABASE: app
healthcheck:
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
start_period: 10s
interval: 10s
timeout: 5s
retries: 3
ports:
- 3307:3306
app:
image: cosmtrek/air:latest
working_dir: /app
volumes:
- ./:/app
env_file:
- .env.local
ports:
- 9090:9090
depends_on:
db:
condition: service_healthy
MySQLのサンプル