mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
feat: add .devcontainer support
This commit is contained in:
parent
ce443de76c
commit
e2a2c8a21c
9 changed files with 307 additions and 0 deletions
21
.devcontainer/docker-compose.yaml
Normal file
21
.devcontainer/docker-compose.yaml
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue