You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
341 B
23 lines
341 B
5 years ago
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
frontend:
|
||
|
build: frontend_server/
|
||
|
depends_on:
|
||
|
- 'database'
|
||
|
ports:
|
||
|
- '3020:3000'
|
||
|
stdin_open: true
|
||
|
|
||
|
backend:
|
||
|
build: backend_server/
|
||
|
depends_on:
|
||
|
- 'database'
|
||
|
ports:
|
||
|
- '3021:3001'
|
||
|
|
||
|
database:
|
||
|
build: database/
|
||
|
restart: always
|
||
|
ports:
|
||
|
- '5444:5432'
|