diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..8331b260 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,30 @@ +services: + 9router: + image: decolua/9router:latest + container_name: 9router + restart: always + ports: + - "20128:20128" + volumes: + - 9router-data:/app/data + env_file: + - .env + environment: + DATA_DIR: /app/data + PORT: "20128" + HOSTNAME: "0.0.0.0" + NODE_ENV: production + HEADROOM_URL: http://headroom:8787 + depends_on: + - headroom + + headroom: + image: ghcr.io/chopratejas/headroom:latest + container_name: headroom + restart: always + ports: + - "8787:8787" + +volumes: + 9router-data: + name: 9router-data