summaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 00000000..de18805e
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,37 @@
+version: "3.3"
+services:
+ nginx:
+ build:
+ context: .
+ dockerfile: Dockerfile-proxy
+ ports:
+ - 5000:80
+ volumes:
+ - static:/var/www/html
+ engelsystem:
+ build: ./
+ environment:
+ MYSQL_HOST: db
+ MYSQL_USER: engelsystem
+ MYSQL_PASSWORD: engelsystem
+ MYSQL_DATABASE: engelsystem
+ volumes:
+ - static:/var/www/html
+ db:
+ image: mariadb:latest
+ environment:
+ MYSQL_DATABASE: engelsystem
+ MYSQL_USER: engelsystem
+ MYSQL_PASSWORD: engelsystem
+ MYSQL_RANDOM_ROOT_PASSWORD: 1
+ volumes:
+ - db:/var/lib/mysql
+ # used for initial database stuff
+ # adminer:
+ # image: adminer
+ # restart: always
+ # ports:
+ # - 8080:8080
+volumes:
+ db: {}
+ static: {} \ No newline at end of file