move docker compose to the correct directory and correct paths (#295)

This commit is contained in:
Ulf Gebhardt 2025-08-11 19:16:35 +01:00 committed by GitHub
parent 05268fbc3d
commit 54b8d3e4f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,11 @@
services: services:
frontend: app:
image: cupcakearmy/static image: cupcakearmy/static
restart: unless-stopped restart: unless-stopped
ports: ports:
- 8080:80 - 8080:80
volumes: volumes:
- ./dist:/srv:ro - ./app/dist:/srv:ro
database: database:
image: postgis/postgis:13-master image: postgis/postgis:13-master
@ -38,7 +38,7 @@ services:
backend: backend:
container_name: backend container_name: backend
build: build:
context: ../backend context: ./backend
depends_on: depends_on:
database: database:
condition: service_healthy condition: service_healthy