mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 10:51:36 +00:00
22 lines
613 B
YAML
22 lines
613 B
YAML
services:
|
|
vito:
|
|
build:
|
|
context: ../
|
|
dockerfile: docker/Dockerfile
|
|
environment:
|
|
NAME: "vito"
|
|
EMAIL: "vito@example.com"
|
|
PASSWORD: "password"
|
|
APP_KEY: "base64:UodiJrx3DkcMlizmoimNlDn+yd4q5f2VbkBay19rJwM="
|
|
APP_PORT: 8000
|
|
extra_hosts:
|
|
- 'host.docker.internal:host-gateway'
|
|
ports:
|
|
- '${APP_PORT:-80}:80'
|
|
- '${VITE_PORT:-5173}:${VITE_PORT:-5173}'
|
|
volumes:
|
|
- "vito-storage:/var/www/html/storage"
|
|
volumes:
|
|
vito-storage:
|
|
driver: local
|