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