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.
31 lines
642 B
31 lines
642 B
services:
|
|
textbee-web:
|
|
image: ghcr.io/vernu/textbee/api:latest
|
|
container_name: textbee-web
|
|
build:
|
|
context: ./web
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3000:3000"
|
|
env_file:
|
|
- path: ./web/.env
|
|
required: true
|
|
command: pnpm start
|
|
textbee-api:
|
|
image: ghcr.io/vernu/textbee/api:latest
|
|
container_name: textbee-api
|
|
build:
|
|
context: ./api
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "3005:3005"
|
|
env_file:
|
|
- path: ./api/.env
|
|
required: true
|
|
depends_on:
|
|
- mongo
|
|
mongo:
|
|
image: mongo
|
|
container_name: mongo
|
|
ports:
|
|
- "27017:27017"
|