mirror of
https://github.com/mivodev/mivo.git
synced 2026-01-26 05:25:42 +07:00
15 lines
273 B
YAML
15 lines
273 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
container_name: mivo_app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./app/Database:/var/www/html/app/Database
|
|
- ./.env:/var/www/html/.env
|
|
environment:
|
|
- APP_ENV=production
|