mirror of
https://github.com/cupcakearmy/obolus.git
synced 2024-12-22 16:16:27 +00:00
22 lines
297 B
YAML
22 lines
297 B
YAML
version: '3.6'
|
|
|
|
x-defaults: &default
|
|
image: node:12-alpine
|
|
restart: always
|
|
working_dir: /app
|
|
command: npm run dev
|
|
|
|
services:
|
|
api:
|
|
<<: *default
|
|
volumes:
|
|
- ./api:/app
|
|
ports:
|
|
- 5000:80
|
|
|
|
www:
|
|
<<: *default
|
|
volumes:
|
|
- ./www:/app
|
|
ports:
|
|
- 80:80 |