aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yaml')
-rw-r--r--docker-compose.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/docker-compose.yaml b/docker-compose.yaml
new file mode 100644
index 0000000..ac05a0f
--- /dev/null
+++ b/docker-compose.yaml
@@ -0,0 +1,15 @@
+version: "3.7"
+services:
+ web:
+ image: web
+ build:
+ context: ./
+ networks:
+ - webnet
+ restart: unless-stopped
+ ports:
+ - "9000:9000"
+ cap_drop:
+ - ALL
+networks:
+ webnet: