-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
32 lines (23 loc) · 1.07 KB
/
docker-compose-dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
######################### PIGEONPOSSE DOCKER-COMPOSE-DEV ########################
#
# BUILD REPO IN DOCKER WITH DOCKER COMPOSE
#
# @description File for build and run project with Docker.
# you can use npm script 'docker-compose-dev' for run or
# use cli 'docker-compose -f docker-compose-dev.yml up --build -d'
###############################################################################
version: "3.8"
###############################################################################
# SERVICES
###############################################################################
services:
#############################################################################
# RUN DOCKER IMAGE WITH DOCKERFILE
#############################################################################
pigeon-web:
container_name: ${PIGEONPOSSE_WEB_CONTAINER_NAME:-pigeon-web}
build: .
ports:
- '${PIGEONPOSSE_WEB_CONTAINER_PORT:-1312}:61312'
restart: always
######################### PIGEONPOSSE DOCKER-COMPOSE-DEV ########################