diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-02 08:17:17 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2023-02-02 08:17:17 +0300 |
commit | 3f54d070e72955db80f410ba74a73846df1fbe09 (patch) | |
tree | e152549eb2a4256e8155970fef759ced65138967 /docker-compose.yml | |
parent | 591bf9056b86e0a4a94e8761d011a885c4b0b34c (diff) |
Add docker support
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a683f15 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3' + +services: + my-darling: + build: . + container_name: mydarling-net + ports: + - "5050:5000" + volumes: + - mydarling-db:/app/Database + - mydarling-wwwroot:/app/wwwroot + +volumes: + mydarling-db: + mydarling-wwwroot:
\ No newline at end of file |