Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- version: "3.8"
- services:
- nuxt:
- build:
- context: ../../website
- dockerfile: ../deployments/local/nuxt.Dockerfile
- args:
- UID: "$UID"
- restart: unless-stopped
- volumes:
- - ../../website:/website
- expose:
- - "3100"
- api:
- build:
- context: ../../
- dockerfile: deployments/local/api.Dockerfile
- restart: unless-stopped
- expose:
- - "8080"
- nginx:
- image: nginx:1.10.3
- restart: unless-stopped
- depends_on:
- - nuxt
- volumes:
- - ./nginx/nginx.conf:/etc/nginx/conf.d/default.conf
- ports:
- - "8080:80"
Advertisement
Add Comment
Please, Sign In to add comment