Bump UI & Codebase

This commit is contained in:
App Generator
2021-02-10 11:48:50 +02:00
parent 0f7fc0cd35
commit 0436e2843b
227 changed files with 42345 additions and 1 deletions

27
docker-compose.yml Normal file
View File

@ -0,0 +1,27 @@
version: '3'
services:
appseed-app:
restart: always
env_file: .env
build: .
ports:
- "5005:5005"
networks:
- db_network
- web_network
nginx:
restart: always
image: "nginx:latest"
ports:
- "85:85"
volumes:
- ./nginx:/etc/nginx/conf.d
networks:
- web_network
depends_on:
- appseed-app
networks:
db_network:
driver: bridge
web_network:
driver: bridge