Skip to content
Snippets Groups Projects
docker-compose.yml 380 B
Newer Older
  • Learn to ignore specific revisions
  • jonezy35's avatar
    jonezy35 committed
    ###################################################
    # This creates and stands up the development
    # docker container. Depends on the Dockerfile and
    # docker-start.sh files.
    ###################################################
    
    services:
      actual-development:
        build: .
        image: actual-development
        ports:
          - '3001:3001'
        volumes:
          - '.:/app'
    
        restart: 'no'