Add containerization and make this bad boy work on Windows and MacOS

This commit is contained in:
omer
2024-02-28 19:08:07 -06:00
parent d58a0543eb
commit df7a63e047
557 changed files with 6647 additions and 5493 deletions
+24
View File
@@ -0,0 +1,24 @@
version: '3'
services:
hearthmod:
build:
context: .
dockerfile: Dockerfile
environment:
- COUCHBASE_HOST=localhost
- COUCHBASE_PORT=8091
- CB_REST_USERNAME=Administrator
- CB_REST_PASSWORD=password
- COUCHBASE_ADMINISTRATOR_PASSWORD=password
volumes:
- .:/app
working_dir: /app
container_name: hearthmod
command: tail -f /dev/null # Keeps the container running
ports:
- 8091:8091
- 8092:8092
- 1119:1119
- 3724:3724
- 80:80
- 9002:9002