Go to file
2025-12-13 16:04:04 +05:00
2025-12-13 16:03:25 +05:00
2025-12-13 15:35:08 +05:00
2025-12-13 15:29:17 +05:00
2025-12-12 20:15:27 +05:00
2025-12-12 20:15:27 +05:00
2025-12-12 20:15:27 +05:00
2025-12-12 20:15:27 +05:00
2025-12-12 06:05:56 +05:00
2025-12-13 16:04:04 +05:00

run migrations

docker compose exec python alembic upgrade head

services:
   app:
      hostname: mapmaker
      image: git.shihaam.dev/sarlink/mapmaker/api
      env_file: .env
      volumes:
        - ./storage/images:/var/www/html/storage/images
      depends_on:
        - postgres

   nginx:
      hostname: mapmaker-nginx
      image: git.shihaam.dev/sarlink/mapmaker/nginx
      volumes_from:
        - app
      ports:
        - 8000:80
      depends_on:
        - app

   postgres:
      image: postgis/postgis:15-3.3
      hostname: database
      restart: always
      environment:
       POSTGRES_USER: mapmaker
       POSTGRES_PASSWORD: mapmaker
       POSTGRES_DB: mapmaker
      volumes:
        - ./storage/database:/var/lib/postgresql/data
#     ports:
#       - "5432:5432"

prod docker compose.yml

Description
No description provided
Readme 511 KiB
Languages
TypeScript 59.6%
Python 38%
CSS 1.5%
Dockerfile 0.3%
JavaScript 0.3%
Other 0.3%