mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-25 18:28:07 +02:00
react-rust-postgres: create simple server
Signed-off-by: Jérémie Drouet <jeremie.drouet@gmail.com>
This commit is contained in:
parent
4478c5c142
commit
bdd0256bfc
6 changed files with 91 additions and 0 deletions
16
react-rust-postgres/docker-compose.yaml
Normal file
16
react-rust-postgres/docker-compose.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
version: "3.7"
|
||||
services:
|
||||
backend:
|
||||
build:
|
||||
context: backend
|
||||
target: development
|
||||
networks:
|
||||
- server-side
|
||||
volumes:
|
||||
- ./backend/src:/code/src:ro
|
||||
- backend-cache:/code/target
|
||||
networks:
|
||||
client-side: {}
|
||||
server-side: {}
|
||||
volumes:
|
||||
backend-cache: {}
|
Loading…
Add table
Add a link
Reference in a new issue