mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-12 15:15:49 +00:00
29 lines
839 B
YAML
29 lines
839 B
YAML
services:
|
|
#######################################################
|
|
# FRONTEND ############################################
|
|
#######################################################
|
|
frontend:
|
|
# name the image so that it cannot be found in a DockerHub repository, otherwise it will not be built locally from the 'dockerfile' but pulled from there
|
|
image: it4c/frontend:local-production
|
|
build:
|
|
context: .
|
|
target: production
|
|
networks:
|
|
- external-net
|
|
- internal-net
|
|
ports:
|
|
- 3000:3000
|
|
environment:
|
|
# Envs used in Dockerfile
|
|
# - DOCKER_WORKDIR="/app"
|
|
# - PORT=3000
|
|
# - BUILD_DATE="1970-01-01T00:00:00.00Z"
|
|
# - BUILD_VERSION="0.0.0.0"
|
|
# - BUILD_COMMIT="0000000"
|
|
- NODE_ENV=production
|
|
|
|
networks:
|
|
external-net:
|
|
internal-net:
|
|
internal: true
|