pianello-web-app/docker-compose.prod.yml

13 lines
282 B
YAML
Raw Normal View History

2023-07-10 17:15:00 +02:00
version: '3.7'
2023-05-31 20:40:17 +02:00
services:
2023-07-10 17:15:00 +02:00
frontend:
image: git.webdeploy.it/pianello/frontend:latest
2023-05-31 20:40:17 +02:00
restart: always
2023-07-10 17:15:00 +02:00
environment:
ORIGIN: "${ORIGIN}"
PORT: 8000
BODY_SIZE_LIMIT: 0
2023-12-22 16:14:16 +01:00
PUBLIC_BACKEND_URL: ${PUBLIC_BACKEND_URL}
2023-05-31 20:40:17 +02:00
ports:
2023-07-10 17:15:00 +02:00
- 127.0.0.1:8000:8000