Updated docker image URLs

This commit is contained in:
Markus Thielen 2023-11-17 15:36:56 +00:00
parent 8f829b17c0
commit 17e979decc

View File

@ -1,42 +1,42 @@
version: '3.9' version: '3.9'
services: services:
dbproxy: dbproxy:
image: gitea.basebox.health/basebox-distribution/dbproxy image: gitea.basebox.health/basebox-distribution/dbproxy:latest
ports: ports:
- "8081:8081" - "8081:8081"
command: command:
["--config-file=/bbconf/dbproxy-config.toml"] ["--config-file=/bbconf/dbproxy-config.toml"]
volumes: volumes:
- ./bbconf/basebox/:/bbconf - ./bbconf/basebox/:/bbconf
broker: broker:
image: gitea.basebox.health/basebox-distribution/broker image: gitea.basebox.health/basebox-distribution/broker:latest
ports: ports:
- "8080:8080" - "8080:8080"
command: command:
["--config-file=/bbconf/broker-config.toml"] ["--config-file=/bbconf/broker-config.toml"]
volumes: volumes:
- ./bbconf/basebox/:/bbconf - ./bbconf/basebox/:/bbconf
db: db:
image: postgres:15-alpine image: postgres:15-alpine
volumes: volumes:
- postgres5:/var/lib/postgresql/data - postgres5:/var/lib/postgresql/data
- ./bbconf/postgres:/docker-entrypoint-initdb.d - ./bbconf/postgres:/docker-entrypoint-initdb.d
ports: ports:
- "5430:5432" - "5430:5432"
environment: environment:
- POSTGRES_PASSWORD=bigsecret - POSTGRES_PASSWORD=bigsecret
- POSTGRES_USER=bb_todo - POSTGRES_USER=bb_todo
- POSTGRES_DB=bb_todo - POSTGRES_DB=bb_todo
web: web:
build: build:
context: . context: .
dockerfile: web.Dockerfile dockerfile: web.Dockerfile
target: development target: development
ports: ports:
- "5167:5167" - "5167:5167"
volumes: volumes:
- .:/project - .:/project
- /project/node_modules - /project/node_modules
volumes: volumes:
postgres5: postgres5: