22 lines
401 B
YAML
22 lines
401 B
YAML
version: '2.2'
|
|
|
|
services:
|
|
|
|
api:
|
|
build:
|
|
dockerfile: Dockerfile.api
|
|
context: .
|
|
container_name: notes-api
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- TZ=Europe/Brussels
|
|
- MYSQL_HOST=db
|
|
depends_on:
|
|
db:
|
|
condition: service_healthy
|
|
|
|
volumes:
|
|
notes-caddy-data:
|
|
notes-caddy-config:
|