Skip to content

Commit

Permalink
Add .devcontainer configuration for officegen-api and python-api envi…
Browse files Browse the repository at this point in the history
…ronments
  • Loading branch information
HlexNC committed Apr 3, 2024
1 parent 26137c7 commit 037a29c
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: '3'
services:
officegen-api:
image: node:14
volumes:
- ../officegen-api:/workspace/officegen-api
ports:
- "3000:3000" # Adjust if your app uses different ports
command: /bin/sh -c "while sleep 1000; do :; done"

python-api:
build:
context: ../python-api
dockerfile: Dockerfile
volumes:
- ../python-api:/workspace/python-api
ports:
- "8000:8000" # Adjust based on your application's needs
command: /bin/sh -c "while sleep 1000; do :; done"

0 comments on commit 037a29c

Please sign in to comment.