mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
Includes a directus backend in the docker-compose file and the extension `directus-sync` to allow the persisting of the directus configuration.
20 lines
387 B
YAML
20 lines
387 B
YAML
services:
|
|
server:
|
|
image: cupcakearmy/static
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8080:80
|
|
volumes:
|
|
- ./dist:/srv:ro
|
|
|
|
backend:
|
|
container_name: backend
|
|
build:
|
|
context: ./backend
|
|
ports:
|
|
- 8055:8055
|
|
environment:
|
|
- SECRET=SECRET
|
|
- PUBLIC_URL=http://localhost
|
|
- ADMIN_EMAIL=admin@it4c.dev
|
|
- ADMIN_PASSWORD=admin123 |