Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docker-compose all three #70

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 16 additions & 14 deletions docker-compose.debug.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,29 @@
services:
# imlsreact:
# image: imlsreact
# build:
# context: ./fe2
# dockerfile: ./Dockerfile
# environment:
# NODE_ENV: development
# ports:
# - 4000:4000
# - 9229:9229
# command: ['node', '--inspect=0.0.0.0:9229', 'index.js']
imls-react:
image: imlsreact
build:
context: fe2
dockerfile: Dockerfile
environment:
NODE_ENV: development
ports:
- 4000:4000
- 9229:9229
command: ['node', '--inspect=0.0.0.0:9229', 'index.js']
# depends_on:
# - fastapi-server

fastapiserver:
fastapi-server:
image: fastapi
build:
context: .
# context: .
dockerfile: Dockerfile
environment:
SERVER_PORT: 5001
ports:
- 5001:5001
# depends_on:
# - imlsreact
# - internetnews-server

internetnews-server:
image: cclauss/inn
Expand Down
22 changes: 12 additions & 10 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
services:
# imls-react:
# image: imlsreact
# build:
# context: fe2
# dockerfile: Dockerfile
# environment:
# NODE_ENV: production
# ports:
# - 4000:4000
imls-react:
image: imlsreact
build:
context: fe2
dockerfile: Dockerfile
environment:
NODE_ENV: production
ports:
- 4000:4000
# depends_on:
# - fastapi-server

fastapi-server:
image: fastapi
Expand All @@ -19,7 +21,7 @@ services:
ports:
- 5001:5001
# depends_on:
# - imls-react
# - internetnews-server

internetnews-server:
image: cclauss/inn
Expand Down