- Move all JavaScript code from index.html to app.js. - Update index.html to include a script tag for app.js.
10 lines
150 B
YAML
10 lines
150 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- ./simpleledger.db:/usr/src/app/data/simpleledger.db
|