17 lines
442 B
YAML
17 lines
442 B
YAML
# docker-compose.yml
|
|
services:
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "127.0.0.1:8000:80"
|
|
environment:
|
|
- APP_ENV=production
|
|
- APP_URL="https://asm.pavo.pw"
|
|
- VITE_APP_URL="https://asm.pavo.pw"
|
|
- DB_CONNECTION=sqlite
|
|
# Just for testing - in general is a bad practices
|
|
- APP_KEY=base64:k1Tc4vWjcmps8r3Qtb5Ybm+shHz+D0Co7+QxRPHH374=
|
|
- AUTORUN_ENABLED=true
|