mirror of
https://github.com/IT4Change/boilerplate-backend.git
synced 2025-12-12 18:05:49 +00:00
29 lines
840 B
YAML
29 lines
840 B
YAML
services:
|
|
#######################################################
|
|
# BACKEND #############################################
|
|
#######################################################
|
|
backend:
|
|
# 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/backend:local-production
|
|
build:
|
|
context: .
|
|
target: production
|
|
networks:
|
|
- external-net
|
|
- internal-net
|
|
ports:
|
|
- 4000:4000
|
|
environment:
|
|
# Envs used in Dockerfile
|
|
# - DOCKER_WORKDIR="/server"
|
|
# - PORT=4000
|
|
# - 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
|