mirror of
https://github.com/Dvorinka/bizoni.git
synced 2026-06-04 18:52:56 +00:00
automated
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
services:
|
||||
backend:
|
||||
build: ./backend
|
||||
container_name: bizoni-backend
|
||||
ports:
|
||||
- "8080:8080"
|
||||
volumes:
|
||||
- ./data:/app/data
|
||||
restart: unless-stopped
|
||||
web:
|
||||
image: nginx:1.27-alpine
|
||||
container_name: bizoni-web
|
||||
depends_on:
|
||||
- backend
|
||||
ports:
|
||||
- "8088:80"
|
||||
volumes:
|
||||
- ./:/usr/share/nginx/html:ro
|
||||
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user