diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..f28e9d7 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,9 @@ +services: + jmespath-playground: + build: . + image: skoszewski/jmespath-playground + ports: + - "3000:3000" + environment: + - NODE_ENV=production + restart: unless-stopped \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index ca717b6..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,25 +0,0 @@ -version: '3.8' - -services: - jmespath-playground: - build: . - ports: - - "3000:3000" - environment: - - NODE_ENV=production - restart: unless-stopped - - # Development service - jmespath-playground-dev: - build: - context: . - dockerfile: Dockerfile.dev - ports: - - "3001:3000" - volumes: - - .:/app - - /app/node_modules - environment: - - CHOKIDAR_USEPOLLING=true - profiles: - - dev \ No newline at end of file