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.
|
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' |