Initial Commit

This commit is contained in:
Ryan Malloy 2025-03-14 14:31:36 -06:00
commit 759b0f7814
27 changed files with 5526 additions and 0 deletions

30
docker-compose.yml Normal file
View file

@ -0,0 +1,30 @@
services:
acl-editor:
restart: unless-stopped
build:
context: .
dockerfile: Dockerfile
labels:
caddy: ${DOMAIN}
caddy.reverse_proxy: "{{upstreams 80}}"
networks:
- caddy
environment:
- NODE_ENV=production
# Development
# acl-editor-dev:
# image: node:20-alpine
# working_dir: /app
# command: sh -c "npm install && npm run dev"
# ports:
# - "5173:5173"
# volumes:
# - ./:/app
# - /app/node_modules
# environment:
# - NODE_ENV=development
networks:
caddy:
external: true