mirror of
https://github.com/Starlio-app/Starlio-web.git
synced 2024-11-05 17:03:58 +03:00
24 lines
No EOL
512 B
YAML
24 lines
No EOL
512 B
YAML
services:
|
|
nginx:
|
|
image: nginx:latest
|
|
ports:
|
|
- '80:80'
|
|
- '443:443'
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
- ./CertSSL:/etc/nginx/ssl
|
|
depends_on:
|
|
- starlio-web
|
|
|
|
starlio-web:
|
|
build: .
|
|
ports:
|
|
- '8000:8000'
|
|
restart: unless-stopped
|
|
volumes:
|
|
- './CertSSL:/CertSSL'
|
|
- './config.yaml:/config.yaml'
|
|
|
|
volumes:
|
|
starlio-web:
|
|
driver: local |