Merge branch 'main' of https://gitea.khongisa.co.za/MngomaLab/automation
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
services:
|
||||
docuseal:
|
||||
image: docuseal/docuseal:latest
|
||||
restart: always
|
||||
environment:
|
||||
- DATABASE_URL=${DATABASE_URL}
|
||||
- PORT=3000
|
||||
- HOST=${PUBLIC_URL}
|
||||
- SECRET_KEY_BASE=${SECRET_KEY_BASE}
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- ./docuseal_data:/data
|
||||
@@ -0,0 +1,21 @@
|
||||
services:
|
||||
penpot-backend:
|
||||
image: penpotapp/backend:latest
|
||||
restart: always
|
||||
environment:
|
||||
- PENPOT_DATABASE_URI=${PENPOT_DATABASE_URI}
|
||||
- PENPOT_REDIS_URI=${PENPOT_REDIS_URI}
|
||||
- PENPOT_SECRET_KEY=${PENPOT_SECRET_KEY}
|
||||
- PENPOT_PUBLIC_URI=${PENPOT_PUBLIC_URI}
|
||||
ports:
|
||||
- "6060:6060"
|
||||
|
||||
penpot-frontend:
|
||||
image: penpotapp/frontend:latest
|
||||
restart: always
|
||||
environment:
|
||||
- PENPOT_FLAGS=enable-all-flags
|
||||
ports:
|
||||
- "8080:80"
|
||||
depends_on:
|
||||
- penpot-backend
|
||||
Reference in New Issue
Block a user