12 lines
232 B
YAML
12 lines
232 B
YAML
|
version: '3.7'
|
||
|
services:
|
||
|
frontend:
|
||
|
image: fascinated/paste-frontend:latest
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 3000:3000
|
||
|
backend:
|
||
|
image: fascinated/paste-backend:latest
|
||
|
restart: always
|
||
|
ports:
|
||
|
- 3005:3000
|