You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
475 B
25 lines
475 B
version: '3.5'
|
|
|
|
x-frontend-variables: &frontend-variables
|
|
DOMAIN: "${DOMAIN}"
|
|
REACT_APP_DOMAIN_URL: "https://${DOMAIN}/"
|
|
|
|
|
|
services:
|
|
frontend:
|
|
container_name: ${CONTAINERS_NAME}_frontend
|
|
build: .
|
|
volumes:
|
|
- ./dist/:/usr/src/postamates_frontend/dist/
|
|
command:
|
|
sh -c "yarn build"
|
|
environment:
|
|
<<: *frontend-variables
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 8096M
|
|
reservations:
|
|
memory: 8096M
|
|
|