Skip to content
Snippets Groups Projects
Select Git revision
  • a47978231ef747bf08937397a8203073e21044f6
  • master default protected
  • vertical_relations
  • lu_without_semantic_frames
  • hierarchy
  • additional-unification-filters
  • v0.1.1
  • v0.1.0
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
  • v0.0.1
17 results

docker-compose.yml

Blame
  • docker-compose.yml 1.04 KiB
    version: "3"
    
    networks:
      app-tier:
        driver: bridge
    
    services:
      postgresql:
        container_name: shellvalier-postgresql
        image: postgres:14.2
        environment:
          POSTGRES_USER: "shellvalier"
          POSTGRES_DB: "shellvalier"
          POSTGRES_PASSWORD: "shellvalier"
          POSTGRES_INITDB_ARGS: "--encoding=UTF-8 --lc-collate=en_US.UTF-8 --lc-ctype=en_US.UTF-8"
        networks:
          - app-tier
        volumes:
          - ./.datastore/postgresql:/var/lib/postgresql/data
    
      backend:
        #platform: linux/amd64
        container_name: shellvalier-backend
        image: shellvalier-developer:latest
        build:
          context: .
          dockerfile: Dockerfile
        depends_on:
          - postgresql
        networks:
          - app-tier
        env_file: .environment-dev
        volumes:
          - .:/app
        ports:
          - "8000:8000"
    
      frontend:
        container_name: shellvalier-frontend
        image: shellvalier-frontend-developer:latest
        build:
          context: .
          dockerfile: Dockerfile-frontend
        networks:
          - app-tier
        volumes:
          - ./frontend:/src
        ports:
          - "8010:8010"