add V2
This commit is contained in:
32
UI_V2/docker_compose.yml
Normal file
32
UI_V2/docker_compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
version: "3.9"
|
||||
|
||||
networks:
|
||||
reverse-proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
tg_instance:
|
||||
tg_assets:
|
||||
|
||||
services:
|
||||
tainagustului:
|
||||
build: .
|
||||
container_name: tainagustului
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
TZ: "Europe/Bucharest"
|
||||
FLET_PORT: "8080"
|
||||
VIRTUAL_HOST: "tainagustului.ro,www.tainagustului.ro"
|
||||
VIRTUAL_PORT: "8080"
|
||||
LETSENCRYPT_HOST: "tainagustului.ro,www.tainagustului.ro"
|
||||
LETSENCRYPT_EMAIL: "macamete.robert@gmail.com"
|
||||
# If your app reads DB path from env, uncomment one of these:
|
||||
# DATABASE_URL: "sqlite:////app/instance/shop.db" # SQLAlchemy style
|
||||
# SHOP_DB_PATH: "/app/instance/shop.db" # custom var
|
||||
expose:
|
||||
- "8080"
|
||||
volumes:
|
||||
- tg_instance:/app/instance
|
||||
- tg_assets:/app/assets
|
||||
networks:
|
||||
- reverse-proxy
|
||||
Reference in New Issue
Block a user