aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml24
1 files changed, 0 insertions, 24 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
deleted file mode 100644
index b8306fa..0000000
--- a/docker-compose.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-version: '3.8'
-
-services:
- db:
- image: postgres:13-alpine
- environment:
- POSTGRES_PASSWORD: postgres
- ports:
- - 5432:5432
- volumes:
- - dbdata:/var/lib/postgresql/data
- - ./sql:/sql
- hommabot2:
- build: .
- image: registry.jan.systems/hommabot2:latest
- env_file: .env
- environment:
- PORT: 3000
- PG_CONNECTION_URI: postgresql://postgres:postgres@db/postgres
- ports:
- - 3000:3000
-
-volumes:
- dbdata: