Skip to content
Snippets Groups Projects
Select Git revision
  • 339ce60d8cecf9c53404df242ff5ca9aac6d74c5
  • 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 716 B
    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:
        container_name: shellvalier-backend
        image: shellvalier-developer:latest
        depends_on:
          - postgresql
        networks:
          - app-tier
        env_file: .environment-dev
        volumes:
          - .:/app
        ports:
          - "8000:8000"