23 lines
669 B
YAML
23 lines
669 B
YAML
services:
|
|
app:
|
|
build: .
|
|
container_name: light-delivery-app
|
|
ports:
|
|
- "443:443"
|
|
- "80:80"
|
|
environment:
|
|
- SPRING_PROFILES_ACTIVE=prod
|
|
- SPRING_DATASOURCE_URL=jdbc:mysql://115.190.121.151:3306/light_delivery?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
|
|
- SPRING_DATASOURCE_USERNAME=double
|
|
- SPRING_DATASOURCE_PASSWORD=Hu@ng1998!
|
|
- JAVA_OPTS=-Xmx512m
|
|
- KEY_STORE_PASSWORD=changeit
|
|
volumes:
|
|
- /etc/ssl/certs:/etc/ssl/certs
|
|
restart: unless-stopped
|
|
networks:
|
|
- light-network
|
|
|
|
networks:
|
|
light-network:
|
|
driver: bridge |