aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: a518fbf5c5c0c6267610810482884550ca1120e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: '3.8'

services:
  api:
    build:
      context: .
      cache_from:
        - eu.gcr.io/slam-lang/slam-runner-api:latest
    image: eu.gcr.io/slam-lang/slam-runner-api
    environment:
      PORT: 4000
      NEWRELIC_LICENSE_KEY: ${NEWRELIC_LICENSE_KEY}
    ports:
      - 4000:4000
    volumes:
      - ./src:/app/src