2 Commits

Author SHA1 Message Date
7d91eb64eb Merge branch 'v1.0.0-local' into debian12 2025-08-01 19:45:26 +02:00
a3df60178b changed ports 2025-08-01 01:09:58 +02:00

View File

@@ -2,6 +2,8 @@ services:
# frontend: # frontend:
# container_name: frontend # container_name: frontend
# build: ./frontend # build: ./frontend
# network:
# - proxynet
# ports: # ports:
# - "7002:7002" # - "7002:7002"
# environment: # environment:
@@ -14,8 +16,14 @@ services:
backend: backend:
container_name: backend container_name: backend
build: ./backend build: ./backend
network:
- proxynet
ports: ports:
- "7001:7001" - "7001:7001"
volumes: volumes:
- ./backend:/bikelane-backend - ./backend:/bikelane-backend
restart: unless-stopped restart: unless-stopped
networks:
proxynet:
external: true