godash/docker-compose.yml
2023-04-16 16:03:18 +02:00

16 lines
358 B
YAML

services:
godash:
build:
context: .
dockerfile: Dockerfile.dev
container_name: godash
restart: always
entrypoint: air --build.exclude_dir "node_modules,static,docs,storage,tmp,dist"
environment:
- TZ=Europe/Berlin
- LOG_LEVEL=debug
- TITLE=DEV
ports:
- 4000:4000
volumes:
- ./:/app/:rw