forked from UTSC-CSCC01-Software-Engineering-I/utsc-cscc01-software-engineering-winter26-ci-cd-example-CI-CD-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaure_config.yml
More file actions
31 lines (28 loc) · 670 Bytes
/
aure_config.yml
File metadata and controls
31 lines (28 loc) · 670 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
28
29
30
31
services:
postgres:
container_name: postgres
image: postgres:latest
restart: always
environment: # Environment variables to be passed to the container
POSTGRES_USER: stock
POSTGRES_PASSWORD: stock
ports:
- "5432:5432"
frontend:
image: ${DOCKER_USERNAME}/cicd-demo-frontend:latest
container_name: frontend
ports:
- '80:3000'
restart: always
redis:
container_name: redis
image: redis:latest
restart: always
ports:
- '6379:6379'
backend:
image: ${DOCKER_USERNAME}/cicd-demo-backend:latest
container_name: backend
ports:
- "5000:5000"
restart: always