-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
27 lines (24 loc) · 842 Bytes
/
docker-compose.dev.yml
File metadata and controls
27 lines (24 loc) · 842 Bytes
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
# Environment variables
# ####################################################################################################
# # READ ME FIRST!
# #
# # ATTENTION: This file is used to build the docker image and run the container in development mode
#
# # For guide on how to run the application in development mode, see the README.md file
# #
# ####################################################################################################
services:
paycheck_db:
image: paycheck-core-db-dev:latest
container_name: paycheeck_dev_db
context: backend/paycheck/docker
ports:
- "8080:8080"
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
volumes:
- paycheck_dev_db:/var/lib/
volumes:
paycheck_db: