mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 23:18:10 +00:00
21 lines
304 B
YAML
21 lines
304 B
YAML
version: "3.9"
|
|
services:
|
|
cli:
|
|
build: cli
|
|
volumes:
|
|
- ..:/workspaces/laravel
|
|
|
|
fpm:
|
|
build: fpm
|
|
volumes:
|
|
- ..:/workspaces/laravel
|
|
user: 1000:1000
|
|
|
|
nginx:
|
|
build: nginx
|
|
volumes:
|
|
- ..:/workspaces/laravel
|
|
ports:
|
|
- 8080:80
|
|
depends_on:
|
|
- fpm
|