Turn any database into a GET-able Rest API
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.
 
 
RestAPI/docker-compose.yml

12 lines
212 B

version: '3'
services:
api:
build:
context: .
dockerfile: src/RestAPI/Dockerfile
ports:
- "80:80"
container_name: "restapi"
env_file:
- .env
network_mode: host